explain f
[xxxterm.git] / linux / util.h
blob2b4cc6a89c7cbcf776ee623f40577edc12964686
1 /* $scrotwm: util.h,v 1.3 2010/01/11 20:44:54 marco Exp $ */
3 #define FPARSELN_UNESCESC 0x01
4 #define FPARSELN_UNESCCONT 0x02
5 #define FPARSELN_UNESCCOMM 0x04
6 #define FPARSELN_UNESCREST 0x08
7 #define FPARSELN_UNESCALL 0x0f
9 size_t strlcpy(char *, const char *, size_t);
10 size_t strlcat(char *, const char *, size_t);
12 char *fgetln(FILE *, size_t *);
13 char *fparseln(FILE *, size_t *, size_t *, const char [3], int);
15 long long strtonum(const char *, long long, long long, const char **);
17 #ifndef WAIT_ANY
18 #define WAIT_ANY (-1)
19 #endif
21 /* there is no limit to ulrich drepper's crap */
22 #ifndef TAILQ_END
23 #define TAILQ_END(head) NULL
24 #endif