summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-11-19 00:47:41 +0100
committerLennart Poettering <lennart@poettering.net>2009-11-19 00:47:41 +0100
commit04fd6fe45b6c4e245a621578d2913296d1bb3642 (patch)
tree18a3541262b52392a6750f0256020b832fab0969
parent852618039bea9f6fa851a0ae3101f79b65d3cf6b (diff)
util: add strna() and is_path_absolute()
-rw-r--r--util.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/util.h b/util.h
index 2df67b73d..60dc04e96 100644
--- a/util.h
+++ b/util.h
@@ -41,6 +41,14 @@ static inline const char* strnull(const char *s) {
return s ? s : "(null)";
}
+static inline const char *strna(const char *s) {
+ return s ? s : "n/a";
+}
+
+static inline bool is_path_absolute(const char *p) {
+ return *p == '/';
+}
+
bool endswith(const char *s, const char *postfix);
bool startswith(const char *s, const char *prefix);