From: Lennart Poettering Date: Wed, 30 May 2018 11:07:37 +0000 (+0200) Subject: string-util: add new memory_startswith() helper X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d88be29380c987f130a7abaa007e998f0e5c8413;p=elogind.git string-util: add new memory_startswith() helper We have code like this at various placer, let's make things shorter and more readable with a helper for it. --- diff --git a/src/basic/string-util.h b/src/basic/string-util.h index 56a64d7f5..52a1d7f2b 100644 --- a/src/basic/string-util.h +++ b/src/basic/string-util.h @@ -217,3 +217,21 @@ static inline size_t strlen_ptr(const char *s) { return strlen(s); } + +/* Like startswith(), but operates on arbitrary memory blocks */ +static inline void *memory_startswith(const void *p, size_t sz, const char *token) { + size_t n; + + assert(token); + + n = strlen(token); + if (sz < n) + return NULL; + + assert(p); + + if (memcmp(p, token, n) != 0) + return NULL; + + return (uint8_t*) p + n; +} diff --git a/src/test/test-string-util.c b/src/test/test-string-util.c index 97f8fde97..a7c863c89 100644 --- a/src/test/test-string-util.c +++ b/src/test/test-string-util.c @@ -414,6 +414,18 @@ static void test_strlen_ptr(void) { assert_se(strlen_ptr(NULL) == 0); } +static void test_memory_startswith(void) { + assert_se(streq(memory_startswith("", 0, ""), "")); + assert_se(streq(memory_startswith("", 1, ""), "")); + assert_se(streq(memory_startswith("x", 2, ""), "x")); + assert_se(!memory_startswith("", 1, "x")); + assert_se(!memory_startswith("", 1, "xxxxxxxx")); + assert_se(streq(memory_startswith("xxx", 4, "x"), "xx")); + assert_se(streq(memory_startswith("xxx", 4, "xx"), "x")); + assert_se(streq(memory_startswith("xxx", 4, "xxx"), "")); + assert_se(!memory_startswith("xxx", 4, "xxxx")); +} + int main(int argc, char *argv[]) { test_string_erase(); #if 0 /// UNNEEDED by elogind @@ -449,6 +461,7 @@ int main(int argc, char *argv[]) { test_split_pair(); test_first_word(); test_strlen_ptr(); + test_memory_startswith(); return 0; }