⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 version.c

📁 xorp源码hg
💻 C
字号:
#include "libtecla.h"/*....................................................................... * Return the version number of the tecla library. * * Input: *  major    int *   The major version number of the library *                   will be assigned to *major. This number is *                   only incremented when a change to the library is *                   made that breaks binary (shared library) and/or *                   compilation backwards compatibility. *  minor    int *   The minor version number of the library *                   will be assigned to *minor. This number is *                   incremented whenever new functions are added to *                   the public API. *  micro    int *   The micro version number of the library will be *                   assigned to *micro. This number is incremented *                   whenever internal changes are made that don't *                   change the public API, such as bug fixes and *                   performance enhancements. */void libtecla_version(int *major, int *minor, int *micro){  if(major)    *major = TECLA_MAJOR_VER;  if(minor)    *minor = TECLA_MINOR_VER;  if(micro)    *micro = TECLA_MICRO_VER;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -