]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/linux/string.h
Merge branch 'fpga' of git://www.denx.de/git/u-boot-microblaze
[people/ms/u-boot.git] / include / linux / string.h
CommitLineData
60b1bd0e
WD
1#ifndef _LINUX_STRING_H_
2#define _LINUX_STRING_H_
3
4#include <linux/types.h> /* for size_t */
5#include <linux/stddef.h> /* for NULL */
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11extern char * ___strtok;
12extern char * strpbrk(const char *,const char *);
13extern char * strtok(char *,const char *);
14extern char * strsep(char **,const char *);
15extern __kernel_size_t strspn(const char *,const char *);
16
17
18/*
19 * Include machine specific inline routines
20 */
21#include <asm/string.h>
22
5afe73f5
JH
23#ifndef __HAVE_ARCH_BCOPY
24char *bcopy(const char *src, char *dest, int count);
25#endif
26
60b1bd0e
WD
27#ifndef __HAVE_ARCH_STRCPY
28extern char * strcpy(char *,const char *);
29#endif
30#ifndef __HAVE_ARCH_STRNCPY
31extern char * strncpy(char *,const char *, __kernel_size_t);
32#endif
80d9ef8d
MY
33#ifndef __HAVE_ARCH_STRLCPY
34size_t strlcpy(char *, const char *, size_t);
35#endif
60b1bd0e
WD
36#ifndef __HAVE_ARCH_STRCAT
37extern char * strcat(char *, const char *);
38#endif
39#ifndef __HAVE_ARCH_STRNCAT
40extern char * strncat(char *, const char *, __kernel_size_t);
41#endif
42#ifndef __HAVE_ARCH_STRCMP
43extern int strcmp(const char *,const char *);
44#endif
45#ifndef __HAVE_ARCH_STRNCMP
46extern int strncmp(const char *,const char *,__kernel_size_t);
47#endif
b1f17bf5
SG
48#ifndef __HAVE_ARCH_STRCASECMP
49int strcasecmp(const char *s1, const char *s2);
50#endif
51#ifndef __HAVE_ARCH_STRNCASECMP
52extern int strncasecmp(const char *s1, const char *s2, __kernel_size_t len);
60b1bd0e
WD
53#endif
54#ifndef __HAVE_ARCH_STRCHR
55extern char * strchr(const char *,int);
56#endif
57#ifndef __HAVE_ARCH_STRRCHR
58extern char * strrchr(const char *,int);
59#endif
e772cb30 60#include <linux/linux_string.h>
60b1bd0e
WD
61#ifndef __HAVE_ARCH_STRSTR
62extern char * strstr(const char *,const char *);
63#endif
64#ifndef __HAVE_ARCH_STRLEN
65extern __kernel_size_t strlen(const char *);
66#endif
67#ifndef __HAVE_ARCH_STRNLEN
68extern __kernel_size_t strnlen(const char *,__kernel_size_t);
69#endif
70#ifndef __HAVE_ARCH_STRDUP
71extern char * strdup(const char *);
72#endif
27aa8186 73#ifndef __HAVE_ARCH_STRSWAB
c3f9d493
WD
74extern char * strswab(const char *);
75#endif
60b1bd0e
WD
76
77#ifndef __HAVE_ARCH_MEMSET
78extern void * memset(void *,int,__kernel_size_t);
79#endif
80#ifndef __HAVE_ARCH_MEMCPY
81extern void * memcpy(void *,const void *,__kernel_size_t);
82#endif
83#ifndef __HAVE_ARCH_MEMMOVE
84extern void * memmove(void *,const void *,__kernel_size_t);
85#endif
86#ifndef __HAVE_ARCH_MEMSCAN
87extern void * memscan(void *,int,__kernel_size_t);
88#endif
89#ifndef __HAVE_ARCH_MEMCMP
90extern int memcmp(const void *,const void *,__kernel_size_t);
91#endif
92#ifndef __HAVE_ARCH_MEMCHR
93extern void * memchr(const void *,int,__kernel_size_t);
94#endif
dfe64e2c
SL
95#ifndef __HAVE_ARCH_MEMCHR_INV
96void *memchr_inv(const void *, int, size_t);
97#endif
60b1bd0e 98
5afe73f5
JH
99unsigned long ustrtoul(const char *cp, char **endp, unsigned int base);
100unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base);
101
60b1bd0e
WD
102#ifdef __cplusplus
103}
104#endif
105
106#endif /* _LINUX_STRING_H_ */