sbase/util.h

11 lines
337 B
C
Raw Normal View History

2011-05-23 01:36:34 +00:00
/* See LICENSE file for copyright and license details. */
2011-06-08 20:30:33 +00:00
#define UTF8_POINT(c) (((c) & 0xc0) != 0x80)
2011-05-26 03:01:20 +00:00
char *agetcwd(void);
2011-05-24 12:00:30 +00:00
void enmasse(int, char **, int (*)(const char *, const char *));
2011-05-23 01:36:34 +00:00
void eprintf(const char *, ...);
2011-06-10 13:55:01 +00:00
long estrtol(const char *, int);
2011-06-10 01:56:13 +00:00
void putword(const char *);
2011-05-24 23:24:33 +00:00
void recurse(const char *, void (*)(const char *));