Go to the documentation of this file.
27 void die(
const char *
fmt, ...);
42 #define min(x, y) ({ \
43 typeof(x) _min1 = (x); \
44 typeof(y) _min2 = (y); \
45 (void) (&_min1 == &_min2); \
46 _min1 < _min2 ? _min1 : _min2; })
48 static inline char *
strim(
char *
string)
61 string = ret +
strlen(ret) - 1;
62 while (
string > ret) {
72 static inline int has_text(
const char *
text)