sbase/util.h

26 lines
796 B
C
Raw Normal View History

2011-05-22 21:36:34 -04:00
/* See LICENSE file for copyright and license details. */
#include <stddef.h>
#include "arg.h"
2011-06-08 16:30:33 -04:00
#define UTF8_POINT(c) (((c) & 0xc0) != 0x80)
2012-05-10 14:20:16 -04:00
#define MIN(x,y) ((x) < (y) ? (x) : (y))
#define MAX(x,y) ((x) > (y) ? (x) : (y))
2012-05-14 16:28:41 -04:00
#define LEN(x) (sizeof (x) / sizeof *(x))
extern char *argv0;
2011-05-25 23:01:20 -04:00
char *agetcwd(void);
2011-06-25 12:26:44 -04:00
void apathmax(char **, long *);
2011-06-25 12:33:38 -04:00
void enmasse(int, char **, int (*)(const char *, const char *));
2011-05-22 21:36:34 -04:00
void eprintf(const char *, ...);
2011-06-18 01:41:28 -04:00
void enprintf(int, const char *, ...);
2011-06-10 09:55:01 -04:00
long estrtol(const char *, int);
2012-01-30 17:41:33 -05:00
void fnck(const char *, const char *, int (*)(const char *, const char *));
2011-06-09 21:56:13 -04:00
void putword(const char *);
2011-05-24 19:24:33 -04:00
void recurse(const char *, void (*)(const char *));
size_t strlcat(char *, const char *, size_t);
size_t strlcpy(char *, const char *, size_t);
void weprintf(const char *, ...);