NetBSD/lib/libntp/lib_strbuf.h

32 lines
624 B
C
Raw Normal View History

1998-08-12 18:11:49 +04:00
/* $NetBSD: lib_strbuf.h,v 1.3 1998/08/12 14:11:49 christos Exp $ */
1998-01-09 06:15:09 +03:00
1997-04-18 17:22:49 +04:00
/*
* lib_strbuf.h - definitions for routines which use the common string buffers
*/
#include <ntp_types.h>
/*
* Sizes of things
*/
#define LIB_NUMBUFS 20
#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; \
} while (0)
extern char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH];
extern int lib_nextbuf;
extern int lib_inited;
1998-08-12 18:11:49 +04:00
void init_lib P((void));