micro68/runtime/string.h

9 lines
157 B
C
Raw Normal View History

2026-08-03 03:28:56 +09:00
#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