libkernaux/include/kernaux/libc.h

19 lines
272 B
C
Raw Normal View History

2021-12-15 10:45:40 +00:00
#ifndef KERNAUX_INCLUDED_LIBC
2021-12-20 06:17:53 +00:00
#define KERNAUX_INCLUDED_LIBC
2021-12-15 10:45:40 +00:00
#ifdef __cplusplus
extern "C" {
#endif
#include <stddef.h>
void *memset(void *s, int c, size_t n);
char *strcpy(char *dest, const char *src);
size_t strlen(const char *s);
#ifdef __cplusplus
}
#endif
#endif