debian man page for zmq_version

Query: zmq_version

OS: debian

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

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_poll(3) - debian
zmq_inproc(7) - debian
zmq_ipc(7) - debian
Similar Topics in the Unix Linux Community
How can I do this in VI editor?
Find columns in a file based on header and print to new file
Weird 'find' results
How to copy a column of multiple files and paste into new excel file (next to column)?