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

9 lines
157 B
C

#ifndef __STRING_H__
#define __STRING_H__
#include <stddef.h>
void memset(void* dst, int data, int sz);
void memcpy(void* dst, void* src, int sz);
#endif