Go to the documentation of this file. 1 #ifndef _PPC_BOOT_STRING_H_
2 #define _PPC_BOOT_STRING_H_
8 extern char *
strchr(
const char *
s,
int c);
9 extern int strcmp(
const char *
s1,
const char *
s2);
10 extern int strncmp(
const char *
s1,
const char *
s2,
size_t n);
11 extern size_t strlen(
const char *
s);
14 extern void *
memset(
void *
s,
int c,
size_t n);
17 extern void *
memchr(
const void *
s,
int c,
size_t n);
18 extern int memcmp(
const void *
s1,
const void *
s2,
size_t n);