From 5a339a9b7b5cdcee3629b14f1b6a58ac4ab60fce Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 30 Oct 2023 21:44:25 +0100 Subject: LibC: Remove header files that are not in the "include" directory --- userland/libc/string.h | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 userland/libc/string.h (limited to 'userland/libc/string.h') diff --git a/userland/libc/string.h b/userland/libc/string.h deleted file mode 100644 index f811dba..0000000 --- a/userland/libc/string.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef STRING_H -#define STRING_H -#include -#include - -char *strerror(int errnum); -void *memset(void *s, int c, size_t n); -void *memcpy(void *dest, const void *src, uint32_t n); -int strcmp(const char *s1, const char *s2); -char *strcpy(char *dest, const char *src); -size_t strlen(const char *s); -size_t strnlen(const char *s, size_t maxlen); -int sscanf(const char *s, const char *restrict format, ...); -char *strrchr(const char *s, int c); -int strncmp(const char *s1, const char *s2, size_t n); -char *strncpy(char *s1, const char *s2, size_t n); -#endif -- cgit v1.2.3