mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 09:44:13 +00:00
efa4452a47
Turns out we had a bunch of silly dependencies on libc headers that are not included with freestanding compilers. Fix all this and change the CFLAGS to exclude libc headers and only include the built-in compiler path. Add our own versions of assert.h, errno.h, limits.h, and move malloc.h and string.h together into a new path used as -isystem, so these headers can be included using #include <>. Remove a bunch of other dependencies in third-party code. Add a strnlen function. Disable building the libfdt overlay code for now, as it needs a strtoul implementation. We can throw that in if/when we decide to use overlays. Signed-off-by: Hector Martin <marcan@marcan.st>
22 lines
675 B
C
22 lines
675 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef STRING_H
|
|
#define STRING_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void *memcpy(void *s1, const void *s2, size_t n);
|
|
void *memmove(void *s1, const void *s2, size_t n);
|
|
int memcmp(const void *s1, const void *s2, size_t n);
|
|
void *memset(void *s, int c, size_t n);
|
|
void *memchr(const void *s, int c, size_t n);
|
|
char *strcpy(char *s1, const char *s2);
|
|
char *strncpy(char *s1, const char *s2, size_t n);
|
|
int strcmp(const char *s1, const char *s2);
|
|
int strncmp(const char *s1, const char *s2, size_t n);
|
|
size_t strlen(const char *s);
|
|
size_t strnlen(const char *s, size_t n);
|
|
char *strchr(const char *s, int c);
|
|
char *strrchr(const char *s, int c);
|
|
|
|
#endif
|