blob: 3d78e27077f414ef671643d44580ec015c936951 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Vivek Goyalc041b5a2014-03-18 15:26:37 -04002#ifndef BOOT_STRING_H
3#define BOOT_STRING_H
4
5/* Undef any of these macros coming from string_32.h. */
6#undef memcpy
7#undef memset
8#undef memcmp
9
10void *memcpy(void *dst, const void *src, size_t len);
11void *memset(void *dst, int c, size_t len);
Vivek Goyalfb4cac572014-03-18 15:26:39 -040012int memcmp(const void *s1, const void *s2, size_t len);
Vivek Goyalc041b5a2014-03-18 15:26:37 -040013
14/*
15 * Access builtin version by default. If one needs to use optimized version,
16 * do "undef memcpy" in .c file and link against right string.c
17 */
18#define memcpy(d,s,l) __builtin_memcpy(d,s,l)
19#define memset(d,c,l) __builtin_memset(d,c,l)
Vivek Goyalfb4cac572014-03-18 15:26:39 -040020#define memcmp __builtin_memcmp
Vivek Goyalc041b5a2014-03-18 15:26:37 -040021
Nicholas Mc Guirefac69d02017-01-07 10:38:31 +010022extern int strcmp(const char *str1, const char *str2);
23extern int strncmp(const char *cs, const char *ct, size_t count);
24extern size_t strlen(const char *s);
25extern char *strstr(const char *s1, const char *s2);
Tommy Nguyen6ec829a2017-06-23 10:36:01 -040026extern char *strchr(const char *s, int c);
Nicholas Mc Guirefac69d02017-01-07 10:38:31 +010027extern size_t strnlen(const char *s, size_t maxlen);
28extern unsigned int atou(const char *s);
29extern unsigned long long simple_strtoull(const char *cp, char **endp,
30 unsigned int base);
31
Vivek Goyalc041b5a2014-03-18 15:26:37 -040032#endif /* BOOT_STRING_H */