2020301918-os/inc/string.h
2022-10-02 12:54:35 +08:00

9 lines
191 B
C

#ifndef MINIOS_STRING_H
#define MINIOS_STRING_H
#include "type.h"
void * memset(void *v, int c, size_t n);
void * memcpy(void *dst, const void *src, size_t n);
#endif /* MINIOS_STRING_H */