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_poll(3) - debian
zmq_send(3) - debian
zmq_recv(3) - debian
zmq_term(3) - debian
zmq_ipc(7) - debian
Similar Topics in the Unix Linux Community
Installing Dash Shell on OS X Lion
How can I do this in VI editor?
Introduction
Detecting unused variables...
A (ksh) Library For and From UNIX.com