sbase/util.h

11 lines
336 B
C
Raw Normal View History

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