X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=util.h;h=c3d3aad7b9a24d7ccc652ed09167da9500213966;hp=a9690603317179081364ee079414ca355a305b52;hb=fb33a393e21a15ce3b4ac8c16d947fd9b6e77206;hpb=2a987ee8c94ac29545e3c94d47b5d493daea0b5e diff --git a/util.h b/util.h index a96906033..c3d3aad7b 100644 --- a/util.h +++ b/util.h @@ -19,7 +19,7 @@ typedef uint64_t usec_t; #define NSEC_PER_USEC 1000ULL /* What is interpreted as whitespace? */ -#define WHITESPACE " \t\n" +#define WHITESPACE " \t\n\r" usec_t now(clockid_t clock); @@ -61,6 +61,7 @@ bool endswith(const char *s, const char *postfix); bool startswith(const char *s, const char *prefix); int close_nointr(int fd); +void close_nointr_nofail(int fd); int parse_boolean(const char *v); @@ -101,4 +102,7 @@ char *path_make_absolute(const char *p, const char *prefix); int reset_all_signal_handlers(void); +char *strstrip(char *s); +char *file_in_same_dir(const char *path, const char *filename); + #endif