Implement APIC, RTC, basic ACPI parser and timer support
[lunaix-os.git] / lunaix-os / includes / libc / string.h
diff --git a/lunaix-os/includes/libc/string.h b/lunaix-os/includes/libc/string.h
deleted file mode 100644 (file)
index 7347de2..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef __LUNAIX_STRING_H
-#define __LUNAIX_STRING_H
-
-#include <stddef.h>
-
-int
-memcmp(const void*, const void*, size_t);
-
-void*
-memcpy(void* __restrict, const void* __restrict, size_t);
-
-void*
-memmove(void*, const void*, size_t);
-
-void*
-memset(void*, int, size_t);
-
-size_t
-strlen(const char* str);
-
-char*
-strcpy(char* dest, const char* src);
-
-size_t
-strnlen(const char* str, size_t max_len);
-
-const char*
-strchr(const char* str, int character);
-
-#endif /* __LUNAIX_STRING_H */