Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/man/man3ssh2/libssh2_version.3ssh2
Real path: /usr/share/man/man3ssh2/libssh2_version.3ssh2
Zurück
'\" te .TH libssh2_version 3ssh2 "23 Feb 2009" "libssh2 1.1" "libssh2 manual" .SH NAME libssh2_version - return the libssh2 version number .SH SYNOPSIS #include <libssh2.h> const char * libssh2_version(int required_version); .SH DESCRIPTION If \fIrequired_version\fP is lower than or equal to the version number of the libssh2 in use, the version number of libssh2 is returned as a pointer to a zero terminated string. The \fIrequired_version\fP should be the version number as constructed by the LIBSSH2_VERSION_NUM define in the libssh2.h public header file, which is a 24 bit number in the 0xMMmmpp format. MM for major, mm for minor and pp for patch number. .SH RETURN VALUE The version number of libssh2 is returned as a pointer to a zero terminated string or NULL if the \fIrequired_version\fP isn't fulfilled. .SH EXAMPLE To make sure you run with the correct libssh2 version: .nf if (!libssh2_version(LIBSSH2_VERSION_NUM)) { fprintf (stderr, \&"Runtime libssh2 version too old!\&"); exit(1); } .fi Unconditionally get the version number: printf(\&"libssh2 version: %s\&", libssh2_version(0) ); .SH AVAILABILITY This function was added in libssh2 1.1, in previous versions there way no way to extract this info in run-time. .\" Oracle has added the ARC stability level to this manual page .SH ATTRIBUTES See .BR attributes (7) for descriptions of the following attributes: .sp .TS box; cbp-1 | cbp-1 l | l . ATTRIBUTE TYPE ATTRIBUTE VALUE = Availability library/libssh2 = Stability Uncommitted .TE .PP .SH NOTES .\" Oracle has added source availability information to this manual page Source code for open source software components in Oracle Solaris can be found at https://www.oracle.com/downloads/opensource/solaris-source-code-downloads.html. This software was built from source available at https://github.com/oracle/solaris-userland. The original community source was downloaded from https://www.libssh2.org/download/libssh2-1.10.0.tar.gz. Further information about this software can be found on the open source community website at https://www.libssh2.org/.