2017-09-17 23:45:03 +08:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2017-09-17 23:21:54 +08:00
|
|
|
extern char buf[1024];
|
2017-09-17 22:18:17 +08:00
|
|
|
|
|
|
|
#define LEN(x) (sizeof (x) / sizeof *(x))
|
|
|
|
|
2018-05-18 00:29:25 +08:00
|
|
|
#define UNUSED(x) (void)x
|
|
|
|
|
2017-09-17 22:18:17 +08:00
|
|
|
const char *bprintf(const char *fmt, ...);
|
|
|
|
int pscanf(const char *path, const char *fmt, ...);
|