2011-05-22 21:36:34 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2014-01-30 07:37:35 -05:00
|
|
|
#include <stddef.h>
|
2013-05-29 14:52:39 -04:00
|
|
|
#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 *));
|
2014-01-30 16:02:45 -05:00
|
|
|
#undef strlcat
|
2014-01-30 07:37:35 -05:00
|
|
|
size_t strlcat(char *, const char *, size_t);
|
2014-01-30 16:02:45 -05:00
|
|
|
#undef strlcpy
|
2014-01-30 07:37:35 -05:00
|
|
|
size_t strlcpy(char *, const char *, size_t);
|
2013-11-13 06:39:24 -05:00
|
|
|
void weprintf(const char *, ...);
|