mirror of
https://github.com/tailix/libkernaux.git
synced 2024-10-30 11:54:01 -04:00
19 lines
318 B
C
19 lines
318 B
C
#ifndef KERNAUX_INCLUDED_LIBC
|
|
#define KERNAUX_INCLUDED_LIBC
|
|
|
|
#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);
|
|
size_t strnlen(const char *s, size_t maxlen);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|