blob: 2ba59d228f7c3c9a11301e4c5348553396c7aec9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@subheading stringprep_check_version
@anchor{stringprep_check_version}
@deftypefun {const char *} {stringprep_check_version} (const char * @var{req_version})
@var{req_version}: Required version number, or NULL.
Check that the version of the library is at minimum the requested one
and return the version string; return NULL if the condition is not
satisfied. If a NULL is passed to this function, no check is done,
but the version string is simply returned.
See @code{STRINGPREP_VERSION} for a suitable @code{req_version} string.
@strong{Return value:} Version string of run-time library, or NULL if the
run-time library does not meet the required version number.
@end deftypefun
|