mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-06-02 17:58:00 +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
|