ubase/util.h

20 lines
575 B
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
#include "arg.h"
#define UTF8_POINT(c) (((c) & 0xc0) != 0x80)
#define LEN(x) (sizeof (x) / sizeof *(x))
extern char *argv0;
2013-08-14 14:38:43 +00:00
char *agetcwd(void);
void apathmax(char **, long *);
void devtotty(int, int *, int *);
void enprintf(int, const char *, ...);
2013-08-14 14:38:43 +00:00
void eprintf(const char *, ...);
long estrtol(const char *, int);
2013-08-29 10:11:26 +00:00
void putword(const char *);
2013-08-14 14:38:43 +00:00
void recurse(const char *, void (*)(const char *));
2013-09-04 10:27:29 +00:00
size_t strlcat(char *, const char *, size_t);
size_t strlcpy(char *, const char *, size_t);
char *ttytostr(int, int);