summaryrefslogtreecommitdiff
path: root/src/basic/string-util.h
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2017-07-07 11:33:14 +0200
committerSven Eden <yamakuzure@gmx.net>2017-07-07 11:33:14 +0200
commita683e1878913969ccf8b0defdec4d955e15ed75a (patch)
tree2235c8eb4dc831669b0e87afca174c9f5361fdb1 /src/basic/string-util.h
parentd737e05d865c11ee3eea63b3ea836da9e2938065 (diff)
Prep v232.2: Mask more unneeded functions
Diffstat (limited to 'src/basic/string-util.h')
-rw-r--r--src/basic/string-util.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/basic/string-util.h b/src/basic/string-util.h
index d029d538b..66e55cb2c 100644
--- a/src/basic/string-util.h
+++ b/src/basic/string-util.h
@@ -66,6 +66,7 @@ static inline bool isempty(const char *p) {
return !p || !p[0];
}
+#if 0 /// UNNEEDED by elogind
static inline const char *empty_to_null(const char *p) {
return isempty(p) ? NULL : p;
}
@@ -73,6 +74,7 @@ static inline const char *empty_to_null(const char *p) {
static inline const char *strdash_if_empty(const char *str) {
return isempty(str) ? "-" : str;
}
+#endif // 0
static inline char *startswith(const char *s, const char *prefix) {
size_t l;
@@ -84,6 +86,7 @@ static inline char *startswith(const char *s, const char *prefix) {
return NULL;
}
+#if 0 /// UNNEEDED by elogind
static inline char *startswith_no_case(const char *s, const char *prefix) {
size_t l;
@@ -93,6 +96,7 @@ static inline char *startswith_no_case(const char *s, const char *prefix) {
return NULL;
}
+#endif // 0
char *endswith(const char *s, const char *postfix) _pure_;
char *endswith_no_case(const char *s, const char *postfix) _pure_;
@@ -134,9 +138,12 @@ char *strjoin(const char *x, ...) _sentinel_;
})
char *strstrip(char *s);
+#if 0 /// UNNEEDED by elogind
char *delete_chars(char *s, const char *bad);
+#endif // 0
char *truncate_nl(char *s);
+#if 0 /// UNNEEDED by elogind
char ascii_tolower(char x);
char *ascii_strlower(char *s);
char *ascii_strlower_n(char *s, size_t n);
@@ -148,6 +155,7 @@ int ascii_strcasecmp_n(const char *a, const char *b, size_t n);
int ascii_strcasecmp_nn(const char *a, size_t n, const char *b, size_t m);
bool chars_intersect(const char *a, const char *b) _pure_;
+#endif // 0
static inline bool _pure_ in_charset(const char *s, const char* charset) {
assert(s);