Lines Matching defs:version
723 * Set the CTF library client version to the specified version. If version is
724 * zero, we just return the default library version number.
727 ctf_version(int version)
729 if (version < 0) {
734 if (version > 0) {
735 if (version > CTF_VERSION) {
739 ctf_dprintf("ctf_version: client using version %d\n", version);
740 _libctf_version = version;