chiark / gitweb /
mount: properly handle LABEL="" in fstab
[elogind.git] / src / util.h
index 66ebb46dbf6741f9fd579e4a9414a8d20ebd7561..4063ee7ff276b82b8b1f28d78f4decd4cccbef02 100644 (file)
@@ -1,4 +1,4 @@
-/*-*- Mode: C; c-basic-offset: 8 -*-*/
+/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
 
 #ifndef fooutilhfoo
 #define fooutilhfoo
@@ -253,6 +253,7 @@ char *format_timespan(char *buf, size_t l, usec_t t);
 int make_stdio(int fd);
 
 bool is_clean_exit(int code, int status);
+bool is_clean_exit_lsb(int code, int status);
 
 unsigned long long random_ull(void);
 
@@ -336,7 +337,12 @@ int running_in_chroot(void);
 
 char *ellipsize(const char *s, unsigned length, unsigned percent);
 
-void nss_disable_nscd(void);
+int touch(const char *path);
+
+char *unquote(const char *s, const char quote);
+
+#define NULSTR_FOREACH(i, l) \
+        for ((i) = (l); (i) && *(i); (i) = strchr((i), 0)+1)
 
 const char *ioprio_class_to_string(int i);
 int ioprio_class_from_string(const char *s);