Orion
Barry Importing existing Orion kernel d41a53c (2 years, 4 months ago)#ifndef KERNEL_MEM_H #define KERNEL_MEM_H #include <stdint.h> #include <stddef.h> void *memset(void *s, int c, size_t n); void *memcpy(void *dest, void *src, size_t n); int memcmp(void *s1, void *s2, size_t n); size_t strlen(char *s); size_t strnlen(char *s, size_t maxlen); int strcmp(const char *s1, const char *s2); int strncmp(const char *s1, const char *s2, size_t n); char *strcpy(char *dest, const char *src); char *strncpy(char *dest, const char *src, size_t n); #endif