]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/powerpc/boot/string.h
[POWERPC] Move bootwrapper's strchr() and strncmp() from .h to string.S
[linux-2.6-omap-h63xx.git] / arch / powerpc / boot / string.h
index 9fdff1cc0d70fd6e77e3f069db72e123ab901bdc..4650030d1040c32d50f390b407ef64d0f7ddba37 100644 (file)
@@ -5,7 +5,9 @@
 extern char *strcpy(char *dest, const char *src);
 extern char *strncpy(char *dest, const char *src, size_t n);
 extern char *strcat(char *dest, const char *src);
+extern char *strchr(const char *s, int c);
 extern int strcmp(const char *s1, const char *s2);
+extern int strncmp(const char *s1, const char *s2, size_t n);
 extern size_t strlen(const char *s);
 extern size_t strnlen(const char *s, size_t count);