1 /* 2 * lib_strbuf - library string storage 3 */ 4 5 #include "lib_strbuf.h" 6 7 /* 8 * Storage declarations 9 */ 10 char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH]; 11 int lib_nextbuf; 12 int lib_inited = 0; 13 14 /* 15 * initialization routine. Might be needed if the code is ROMized. 16 */ 17 void 18 init_lib(void) 19 { 20 lib_nextbuf = 0; 21 lib_inited = 1; 22 } 23