zmq_version(3) debian man page | unix.com

Man Page: zmq_version

Operating Environment: debian

Section: 3

ZMQ_VERSION(3)							    0MQ Manual							    ZMQ_VERSION(3)

NAME
zmq_version - report 0MQ library version
SYNOPSIS
void zmq_version (int *major, int *minor, int *patch);
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.
RETURN VALUE
There is no return value.
ERRORS
No errors are defined.
EXAMPLE
Printing out the version of the 0MQ library. int major, minor, patch; zmq_version (&major, &minor, &patch); printf ("Current 0MQ version is %d.%d.%d ", major, minor, patch);
SEE ALSO
zmq(7)
AUTHORS
This manual page was written by the 0MQ community. 0MQ 2.2.0 04/04/2012 ZMQ_VERSION(3)
Related Man Pages
zmq_msg_close(3) - debian
zmq_msg_copy(3) - debian
zmq_msg_init(3) - debian
zmq_msg_init_data(3) - debian
zmq_ipc(7) - debian
Similar Topics in the Unix Linux Community
Adding the individual columns of a matrix.
Detecting unused variables...
One instance of comparing grep and awk
How to copy a column of multiple files and paste into new excel file (next to column)?
My first PERL incarnation... Audio Oscillograph