summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/util.h b/util.h
index a969060331..9aceaef47f 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);
@@ -101,4 +101,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