NetBSD/dist/ntp/libntp/lib_strbuf.c

26 lines
415 B
C
Raw Normal View History

/* $NetBSD: lib_strbuf.c,v 1.2 2000/04/17 05:49:11 simonb Exp $ */
2000-03-29 16:38:44 +04:00
/*
* lib_strbuf - library string storage
*/
#include "ntp_stdlib.h"
2000-03-29 16:38:44 +04:00
#include "lib_strbuf.h"
/*
* Storage declarations
*/
char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH];
int lib_nextbuf;
int lib_inited = 0;
/*
* initialization routine. Might be needed if the code is ROMized.
*/
void
init_lib(void)
{
lib_nextbuf = 0;
lib_inited = 1;
}