chiark / gitweb /
util: add parsers for boolean and integers
[elogind.git] / util.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef fooutilhfoo
4 #define fooutilhfoo
5
6 #include <inttypes.h>
7 #include <time.h>
8 #include <sys/time.h>
9 #include <stdbool.h>
10
11 typedef uint64_t usec_t;
12
13 #define USEC_PER_SEC 1000000ULL
14 #define NSEC_PER_USEC 1000ULL
15
16 usec_t now(clockid_t clock);
17
18 usec_t timespec_load(const struct timespec *ts);
19 struct timespec *timespec_store(struct timespec *ts, usec_t u);
20
21 usec_t timeval_load(const struct timeval *tv);
22 struct timeval *timeval_store(struct timeval *tv, usec_t u);
23
24 #define streq(a,b) (strcmp((a),(b)) == 0)
25
26 #define new(t, n) ((t*) malloc(sizeof(t)*(n)))
27
28 #define new0(t, n) ((t*) calloc((n), sizeof(t)))
29
30 #define malloc0(n) (calloc((n), 1))
31
32 static inline const char* yes_no(bool b) {
33         return b ? "yes" : "no";
34 }
35
36 static inline const char* strempty(const char *s) {
37         return s ? s : "";
38 }
39
40 static inline const char* strnull(const char *s) {
41         return s ? s : "(null)";
42 }
43
44 bool endswith(const char *s, const char *postfix);
45 bool startswith(const char *s, const char *prefix);
46
47 int nointr_close(int fd);
48
49 int parse_boolean(const char *v);
50
51 int safe_atou(const char *s, unsigned *ret_u);
52 int safe_atoi(const char *s, int *ret_i);
53
54 #endif