2026-08-03 03:28:56 +09:00
|
|
|
#ifndef __STRING_H__
|
|
|
|
|
#define __STRING_H__
|
|
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
2026-08-04 20:27:51 +09:00
|
|
|
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);
|
2026-08-03 03:28:56 +09:00
|
|
|
|
|
|
|
|
#endif
|