freebsd-nq/libntp/lib_strbuf.h
Ollivier Robert ff717da2cf Import ntp 4.2.4p5 in the vendor code area. Far too many changes to list here,
please see CommitLog for detailed changes.

XXX html/build/hints/solaris.xtra.4095849 is not being imported as it conflicts
    with the detect-merge-conflict.sh script in our repo.
2008-08-18 14:26:05 +00:00

29 lines
564 B
C

/*
* 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;