b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | #ifndef _PPC_BOOT_STRING_H_ |
| 3 | #define _PPC_BOOT_STRING_H_ |
| 4 | #include <stddef.h> |
| 5 | |
| 6 | extern char *strcpy(char *dest, const char *src); |
| 7 | extern char *strncpy(char *dest, const char *src, size_t n); |
| 8 | extern char *strcat(char *dest, const char *src); |
| 9 | extern char *strchr(const char *s, int c); |
| 10 | extern char *strrchr(const char *s, int c); |
| 11 | extern int strcmp(const char *s1, const char *s2); |
| 12 | extern int strncmp(const char *s1, const char *s2, size_t n); |
| 13 | extern size_t strlen(const char *s); |
| 14 | extern size_t strnlen(const char *s, size_t count); |
| 15 | |
| 16 | extern void *memset(void *s, int c, size_t n); |
| 17 | extern void *memmove(void *dest, const void *src, unsigned long n); |
| 18 | extern void *memcpy(void *dest, const void *src, unsigned long n); |
| 19 | extern void *memchr(const void *s, int c, size_t n); |
| 20 | extern int memcmp(const void *s1, const void *s2, size_t n); |
| 21 | |
| 22 | #endif /* _PPC_BOOT_STRING_H_ */ |