2011-05-23 01:36:34 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
|
2013-05-29 18:52:39 +00:00
|
|
|
#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 *));
|
2013-06-19 19:09:50 +00:00
|
|
|
|