diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-10-19 04:52:51 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-10-19 04:53:46 +0200 |
commit | 8c7c140fcab0592735d22168657a143969a4c2bf (patch) | |
tree | d9094779472102860625180329e3b1ac9b324e9b /src/shared/util.h | |
parent | 857a493d55f94731394e4d9f61ffce661858e9a0 (diff) |
util: change endswith() to return a pointer to the suffix
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index affb66998c..77d28751f0 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -141,7 +141,7 @@ static inline bool isempty(const char *p) { return !p || !p[0]; } -bool endswith(const char *s, const char *postfix); +char *endswith(const char *s, const char *postfix); bool startswith(const char *s, const char *prefix); bool startswith_no_case(const char *s, const char *prefix); |