Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-ppc / string.h
blob225575997392a99db649a8018f58297450e35cfa
1 #ifndef _PPC_STRING_H_
2 #define _PPC_STRING_H_
4 #ifdef __KERNEL__
6 #define __HAVE_ARCH_STRCPY
7 #define __HAVE_ARCH_STRNCPY
8 #define __HAVE_ARCH_STRLEN
9 #define __HAVE_ARCH_STRCMP
10 #define __HAVE_ARCH_STRCAT
11 #define __HAVE_ARCH_MEMSET
12 #define __HAVE_ARCH_MEMCPY
13 #define __HAVE_ARCH_MEMMOVE
14 #define __HAVE_ARCH_MEMCMP
15 #define __HAVE_ARCH_MEMCHR
17 extern int strcasecmp(const char *, const char *);
18 extern int strncasecmp(const char *, const char *, int);
19 extern char * strcpy(char *,const char *);
20 extern char * strncpy(char *,const char *, __kernel_size_t);
21 extern __kernel_size_t strlen(const char *);
22 extern int strcmp(const char *,const char *);
23 extern char * strcat(char *, const char *);
24 extern void * memset(void *,int,__kernel_size_t);
25 extern void * memcpy(void *,const void *,__kernel_size_t);
26 extern void * memmove(void *,const void *,__kernel_size_t);
27 extern int memcmp(const void *,const void *,__kernel_size_t);
28 extern void * memchr(const void *,int,__kernel_size_t);
30 #endif /* __KERNEL__ */
32 #endif