26 lines
546 B
C
26 lines
546 B
C
#ifndef _STRING_H
|
|
#define _STRING_H 1
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
char* __stpcpy(char* __restrict, const char* __restrict);
|
|
char* strcpy(char* __restrict, const char* __restrict);
|
|
char* strcat(char* __restrict, const char* __restrict);
|
|
|
|
int memcmp(const void*, const void*, size_t);
|
|
void* memcpy(void* __restrict, const void* __restrict, size_t);
|
|
void* memmove(void*, const void*, size_t);
|
|
void* memset(void*, int, size_t);
|
|
size_t strlen(const char*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|