lib_strbuf.h

来自「网络时间协议NTP 源码 版本v4.2.0b 该源码用于linux平台下」· C头文件 代码 · 共 29 行

H
29
字号
/* * lib_strbuf.h - definitions for routines which use the common string buffers */#include <ntp_types.h>/* * Sizes of things */#define	LIB_NUMBUFS	200#define	LIB_BUFLENGTH	80/* * Macro to get a pointer to the next buffer */#define	LIB_GETBUF(buf) \	do { \		if (!lib_inited) \			init_lib(); \		buf = &lib_stringbuf[lib_nextbuf][0]; \		if (++lib_nextbuf >= LIB_NUMBUFS) \			lib_nextbuf = 0; \		memset(buf, 0, LIB_BUFLENGTH); \	} while (0)extern char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH];extern int lib_nextbuf;extern int lib_inited;

⌨️ 快捷键说明

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