diff options
Diffstat (limited to 'contrib/ntp/libntp/lib_strbuf.c')
-rw-r--r-- | contrib/ntp/libntp/lib_strbuf.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/contrib/ntp/libntp/lib_strbuf.c b/contrib/ntp/libntp/lib_strbuf.c new file mode 100644 index 0000000..690f1ad --- /dev/null +++ b/contrib/ntp/libntp/lib_strbuf.c @@ -0,0 +1,22 @@ +/* + * lib_strbuf - library string storage + */ + +#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; +} |