sbase/util.h

26 lines
796 B
C
Raw Normal View History

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