Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

zmq_version - report 0MQ library version

Authors

       This page was written by the 0MQ community. To make a change please read the 0MQ Contribution Policy at
       http://www.zeromq.org/docs:contributing.

0MQ 4.3.5                                          03/31/2024                                     ZMQ_VERSION(3)

Description

       The zmq_version() function shall fill in the integer variables pointed to by the major, minor and patch
       arguments with the major, minor and patch level components of the 0MQ library version.

       This functionality is intended for applications or language bindings dynamically linking to the 0MQ
       library that wish to determine the actual version of the 0MQ library they are using.

Errors

       No errors are defined.

Example

Printingouttheversionofthe0MQlibrary.

           int major, minor, patch;
           zmq_version (&major, &minor, &patch);
           printf ("Current 0MQ version is %d.%d.%d\n", major, minor, patch);

Name

       zmq_version - report 0MQ library version

Return Value

       There is no return value.

See Also

zmq(7)

Synopsis

voidzmq_version(int*major,int*minor,int*patch);

See Also