micro68/runtime/string.h
2026-08-04 20:27:51 +09:00

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