/contrib/ntp/libntp/lib_strbuf.h

https://bitbucket.org/freebsd/freebsd-head/ · C++ Header · 28 lines · 15 code · 4 blank · 9 comment · 3 complexity · 40800b1012b55a3eec2d2484e897d6b2 MD5 · raw file

  1. /*
  2. * lib_strbuf.h - definitions for routines which use the common string buffers
  3. */
  4. #include <ntp_types.h>
  5. /*
  6. * Sizes of things
  7. */
  8. #define LIB_NUMBUFS 200
  9. #define LIB_BUFLENGTH 80
  10. /*
  11. * Macro to get a pointer to the next buffer
  12. */
  13. #define LIB_GETBUF(buf) \
  14. do { \
  15. if (!lib_inited) \
  16. init_lib(); \
  17. buf = &lib_stringbuf[lib_nextbuf][0]; \
  18. if (++lib_nextbuf >= LIB_NUMBUFS) \
  19. lib_nextbuf = 0; \
  20. memset(buf, 0, LIB_BUFLENGTH); \
  21. } while (0)
  22. extern char lib_stringbuf[LIB_NUMBUFS][LIB_BUFLENGTH];
  23. extern int lib_nextbuf;
  24. extern int lib_inited;