Files
ygglibc/include/bits/string.h
T

12 lines
275 B
C

#ifndef _YGGDRASIL_STRING_H
#define _YGGDRASIL_STRING_H 1
#include <stddef.h>
void *memcpy(void *dst, const void *src, size_t n);
void *memmove(void *dst, const void *src, size_t n);
int memcmp(const void *a, const void *b, size_t n);
size_t strlen(const char *a);
#endif