mirror of
https://github.com/Fennix-Project/Userspace.git
synced 2025-05-28 15:34:26 +00:00
21 lines
295 B
C
21 lines
295 B
C
#ifndef _STRING_H
|
|
#define _STRING_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
void *memcpy(void *, const void *, size_t);
|
|
void *memset(void *, int, size_t);
|
|
char *strcpy(char *, const char *);
|
|
size_t strlen(const char *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|