12 lines
278 B
C
12 lines
278 B
C
#ifndef __STRING_H__
|
|
#define __STRING_H__
|
|
|
|
#include <stddef.h>
|
|
|
|
void* memcpy(void* dst, const void* src, int sz);
|
|
void* memset(void* dst, int data, int sz);
|
|
char* strcat(char* dst, const char* src);
|
|
int strlen(const char* src);
|
|
char* strcpy(char* dst, const char* src);
|
|
|
|
#endif
|