aboutsummaryrefslogtreecommitdiff
path: root/src/lib/memchr.c
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2011-09-16 02:18:56 -0700
committerMathias Krause <minipli@googlemail.com>2012-03-09 20:00:53 +0100
commit1025f3afc85be633451c4312ab26d179d47132e5 (patch)
treea43a5caf546a5617aa9fe7a1007f2abd2e4ec2c8 /src/lib/memchr.c
parent8ebd11eab999654873010e706b95e5fe5855ea64 (diff)
Add an implementation for the memchr library function
Change-Id: Icded479d246f7cce8a3d2154c69f75178fa513e1 Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: http://review.coreboot.org/708 Reviewed-by: Ronald G. Minnich <rminnich@gmail.com> Tested-by: build bot (Jenkins) Reviewed-by: Mathias Krause <minipli@googlemail.com>
Diffstat (limited to 'src/lib/memchr.c')
-rw-r--r--src/lib/memchr.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/memchr.c b/src/lib/memchr.c
new file mode 100644
index 0000000000..a890dceada
--- /dev/null
+++ b/src/lib/memchr.c
@@ -0,0 +1,11 @@
+#include <string.h>
+void *memchr(const void *s, int c, size_t n)
+{
+ const unsigned char *sc = s;
+ while (n--) {
+ if (*sc == (unsigned char)c)
+ return (void *)sc;
+ sc++;
+ }
+ return NULL;
+}