2011-05-23 01:36:34 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2014-11-17 14:50:12 +00:00
|
|
|
#include <sys/types.h>
|
2014-11-17 15:45:09 +00:00
|
|
|
|
2014-11-16 14:16:14 +00:00
|
|
|
#include <regex.h>
|
2014-01-30 12:37:35 +00:00
|
|
|
#include <stddef.h>
|
2013-05-29 18:52:39 +00:00
|
|
|
|
2014-11-17 15:45:09 +00:00
|
|
|
#include "arg.h"
|
|
|
|
#include "compat.h"
|
2014-11-17 14:50:12 +00:00
|
|
|
|
2011-06-08 20:30:33 +00:00
|
|
|
#define UTF8_POINT(c) (((c) & 0xc0) != 0x80)
|
|
|
|
|
2014-11-13 15:27:54 +00:00
|
|
|
#undef MIN
|
2012-05-10 18:20:16 +00:00
|
|
|
#define MIN(x,y) ((x) < (y) ? (x) : (y))
|
2014-11-13 15:27:54 +00:00
|
|
|
#undef MAX
|
2012-05-10 18:20:16 +00:00
|
|
|
#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 *);
|
2014-11-14 18:13:14 +00:00
|
|
|
|
2014-11-14 18:09:48 +00:00
|
|
|
void *ecalloc(size_t, size_t);
|
|
|
|
void *emalloc(size_t size);
|
|
|
|
void *erealloc(void *, size_t);
|
|
|
|
char *estrdup(const char *);
|
2014-11-14 18:13:14 +00:00
|
|
|
|
|
|
|
void enprintf(int, const char *, ...);
|
|
|
|
void eprintf(const char *, ...);
|
|
|
|
void weprintf(const char *, ...);
|
|
|
|
|
2014-06-01 11:57:22 +00:00
|
|
|
double estrtod(const char *);
|
2014-11-14 18:09:48 +00:00
|
|
|
|
2014-11-20 23:43:08 +00:00
|
|
|
#undef strcasestr
|
|
|
|
char *strcasestr(const char *, 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);
|
2014-04-09 13:17:20 +00:00
|
|
|
|
2015-01-25 17:48:11 +00:00
|
|
|
#undef strsep
|
|
|
|
char *strsep(char **, const char *);
|
|
|
|
|
2014-11-16 14:16:14 +00:00
|
|
|
/* regex */
|
|
|
|
int enregcomp(int, regex_t *, const char *, int);
|
|
|
|
int eregcomp(regex_t *, const char *, int);
|
|
|
|
|
2014-11-14 18:13:14 +00:00
|
|
|
/* misc */
|
|
|
|
void enmasse(int, char **, int (*)(const char *, const char *));
|
|
|
|
void fnck(const char *, const char *, int (*)(const char *, const char *));
|
2014-04-23 19:28:59 +00:00
|
|
|
mode_t getumask(void);
|
2014-11-14 18:13:14 +00:00
|
|
|
char *humansize(double);
|
2014-04-23 19:28:59 +00:00
|
|
|
mode_t parsemode(const char *, mode_t, mode_t);
|
2014-11-14 18:13:14 +00:00
|
|
|
void putword(const char *);
|
|
|
|
void recurse(const char *, void (*)(const char *));
|
2015-01-30 13:52:24 +00:00
|
|
|
#undef strtonum
|
2015-01-30 13:48:33 +00:00
|
|
|
long long strtonum(const char *, long long, long long, const char **);
|
2015-01-30 13:56:45 +00:00
|
|
|
long long estrtonum(const char *, long long, long long);
|
2015-01-29 20:52:44 +00:00
|
|
|
size_t unescape(char *);
|