2011-05-23 02:36:34 +01:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2014-01-30 12:37:35 +00:00
|
|
|
#include <stddef.h>
|
2014-06-16 23:38:57 +02:00
|
|
|
#include <sys/types.h>
|
2013-05-29 20:52:39 +02:00
|
|
|
#include "arg.h"
|
|
|
|
|
2011-06-08 21:30:33 +01:00
|
|
|
#define UTF8_POINT(c) (((c) & 0xc0) != 0x80)
|
|
|
|
|
2012-05-10 19:20:16 +01:00
|
|
|
#define MIN(x,y) ((x) < (y) ? (x) : (y))
|
|
|
|
#define MAX(x,y) ((x) > (y) ? (x) : (y))
|
|
|
|
|
2012-05-14 21:28:41 +01:00
|
|
|
#define LEN(x) (sizeof (x) / sizeof *(x))
|
|
|
|
|
|
|
|
extern char *argv0;
|
|
|
|
|
2011-05-26 04:01:20 +01:00
|
|
|
char *agetcwd(void);
|
2011-06-25 17:26:44 +01:00
|
|
|
void apathmax(char **, long *);
|
2011-06-25 17:33:38 +01:00
|
|
|
void enmasse(int, char **, int (*)(const char *, const char *));
|
2011-05-23 02:36:34 +01:00
|
|
|
void eprintf(const char *, ...);
|
2011-06-18 06:41:28 +01:00
|
|
|
void enprintf(int, const char *, ...);
|
2014-06-01 13:57:22 +02:00
|
|
|
double estrtod(const char *);
|
2011-06-10 14:55:01 +01: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 02:56:13 +01:00
|
|
|
void putword(const char *);
|
2011-05-25 00:24:33 +01:00
|
|
|
void recurse(const char *, void (*)(const char *));
|
2014-01-30 21:02:45 +00:00
|
|
|
#undef strlcat
|
2014-01-30 12:37:35 +00:00
|
|
|
size_t strlcat(char *, const char *, size_t);
|
2014-01-30 21:02:45 +00:00
|
|
|
#undef strlcpy
|
2014-01-30 12:37:35 +00:00
|
|
|
size_t strlcpy(char *, const char *, size_t);
|
2013-11-13 11:39:24 +00:00
|
|
|
void weprintf(const char *, ...);
|
2014-04-09 15:17:20 +02:00
|
|
|
|
2014-04-23 21:28:59 +02:00
|
|
|
mode_t getumask(void);
|
|
|
|
mode_t parsemode(const char *, mode_t, mode_t);
|