![]() |
![]()
| ![]() |
![]()
NAMExs_version - report Crossroads library versionSYNOPSISvoid xs_version (int *major, int *minor, int *patch);DESCRIPTIONThe xs_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 Crossroads library version.This functionality is intended for applications or language bindings dynamically linking to the Crossroads library that wish to determine the actual version of the Crossroads library they are using. RETURN VALUEThere is no return value.ERRORSNo errors are defined.EXAMPLEPrinting out the version of the Crossroads library.int major, minor, patch; xs_version (&major, &minor, &patch); printf ("Current Crossroads version is %d.%d.%d\n", major, minor, patch); SEE ALSOxs(7)AUTHORSThe Crossroads documentation was written by Martin Sustrik <sustrik@250bpm.com[1]> and Martin Lucina <martin@lucina.net[2]>.NOTES
mailto:sustrik@250bpm.com
mailto:martin@lucina.net
|