util.h 247 B

123456789
  1. /* See LICENSE file for copyright and license details. */
  2. extern char buf[1024];
  3. #define LEN(x) (sizeof (x) / sizeof *(x))
  4. #define UNUSED(x) (void)x
  5. const char *bprintf(const char *fmt, ...);
  6. int pscanf(const char *path, const char *fmt, ...);