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