lib: move strchr()
authorJan Beulich <jbeulich@suse.com>
Thu, 22 Apr 2021 12:50:25 +0000 (14:50 +0200)
committerJan Beulich <jbeulich@suse.com>
Thu, 22 Apr 2021 12:50:25 +0000 (14:50 +0200)
Allow the function to be individually linkable, discardable, and
overridable.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Julien Grall <jgrall@amazon.com>
xen/common/string.c
xen/lib/Makefile
xen/lib/strchr.c [new file with mode: 0644]

index 6042262b4963c8428a52525a8aac0cfb3c6bd549..f433b15afdbc2b0ecb9cf35922a75476046623ff 100644 (file)
@@ -56,21 +56,6 @@ int (strcasecmp)(const char *s1, const char *s2)
 }
 #endif
 
-#ifndef __HAVE_ARCH_STRCHR
-/**
- * strchr - Find the first occurrence of a character in a string
- * @s: The string to be searched
- * @c: The character to search for
- */
-char *(strchr)(const char *s, int c)
-{
-       for(; *s != (char) c; ++s)
-               if (*s == '\0')
-                       return NULL;
-       return (char *) s;
-}
-#endif
-
 #ifndef __HAVE_ARCH_STRRCHR
 /**
  * strrchr - Find the last occurrence of a character in a string
index 0c6c726adf63acdb02a596bf9b6b73f7db4040c2..b69b5163691bfd4d3d6e1c09b275d4549e831947 100644 (file)
@@ -14,6 +14,7 @@ lib-y += muldiv64.o
 lib-y += parse-size.o
 lib-y += rbtree.o
 lib-y += sort.o
+lib-y += strchr.o
 lib-y += strcmp.o
 lib-y += strlcat.o
 lib-y += strlcpy.o
diff --git a/xen/lib/strchr.c b/xen/lib/strchr.c
new file mode 100644 (file)
index 0000000..2eba3f1
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ *  Copyright (C) 1991, 1992  Linus Torvalds
+ */
+
+#include <xen/string.h>
+
+/**
+ * strchr - Find the first occurrence of a character in a string
+ * @s: The string to be searched
+ * @c: The character to search for
+ */
+char *(strchr)(const char *s, int c)
+{
+       for(; *s != (char) c; ++s)
+               if (*s == '\0')
+                       return NULL;
+       return (char *) s;
+}
+
+/*
+ * Local variables:
+ * mode: C
+ * c-file-style: "BSD"
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ */