From 9d474f278d21ddc452d8a1a722b3735fae94115c Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Wed, 1 Jun 2022 14:21:56 +0200 Subject: Cleanup: libsqfs: sqfs_dir_reader_find_by_path Split out several repated patterns into helper functions and move the rest of the code back into dir_reader.c Signed-off-by: David Oberhollenzer --- lib/compat/strchrnul.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lib/compat/strchrnul.c (limited to 'lib/compat/strchrnul.c') diff --git a/lib/compat/strchrnul.c b/lib/compat/strchrnul.c new file mode 100644 index 0000000..681b287 --- /dev/null +++ b/lib/compat/strchrnul.c @@ -0,0 +1,12 @@ +#include "config.h" +#include "compat.h" + +#ifndef HAVE_STRCHRNUL +char *strchrnul(const char *s, int c) +{ + while (*s && *((unsigned char *)s) != c) + ++s; + + return (char *)s; +} +#endif -- cgit v1.2.3