]> git.ipfire.org Git - people/ms/systemd.git/blame - util.h
initial commit
[people/ms/systemd.git] / util.h
CommitLineData
60918275
LP
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
11typedef uint64_t usec_t;
12
13#define USEC_PER_SEC 1000000ULL
14#define NSEC_PER_USEC 1000ULL
15
16usec_t now(clockid_t clock);
17
18usec_t timespec_load(const struct timespec *ts);
19struct timespec *timespec_store(struct timespec *ts, usec_t u);
20
21usec_t timeval_load(const struct timeval *tv);
22struct 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
32static inline const char* yes_no(bool b) {
33 return b ? "yes" : "no";
34}
35
36static inline const char* strempty(const char *s) {
37 return s ? s : "";
38}
39
40static inline const char* strnull(const char *s) {
41 return s ? s : "(null)";
42}
43
44bool endswith(const char *s, const char *postfix);
45bool startswith(const char *s, const char *prefix);
46
47int nointr_close(int fd);
48
49#endif