diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-26 22:31:05 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-27 13:25:56 +0100 |
commit | 8b43440b7ef4b81c69c31de7ff820dc07a780254 (patch) | |
tree | 595e6dbbf92dc2bc4ae92e21e1c99b2d61146ac8 /src/basic/util.c | |
parent | 8fcde01280adcbd07e8205b91ac52b06305b6208 (diff) |
util-lib: move string table stuff into its own string-table.[ch]
Diffstat (limited to 'src/basic/util.c')
-rw-r--r-- | src/basic/util.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/basic/util.c b/src/basic/util.c index 30691dea6b..0878adbfac 100644 --- a/src/basic/util.c +++ b/src/basic/util.c @@ -94,6 +94,7 @@ #include "random-util.h" #include "signal-util.h" #include "sparse-endian.h" +#include "string-table.h" #include "string-util.h" #include "strv.h" #include "terminal-util.h" @@ -1450,19 +1451,6 @@ int syslog_parse_priority(const char **p, int *priority, bool with_facility) { return 1; } -ssize_t string_table_lookup(const char * const *table, size_t len, const char *key) { - size_t i; - - if (!key) - return -1; - - for (i = 0; i < len; ++i) - if (streq_ptr(table[i], key)) - return (ssize_t) i; - - return -1; -} - int version(void) { puts(PACKAGE_STRING "\n" SYSTEMD_FEATURES); |