Files
mini-riscv-os/10-SystemCall/include/string.h
2021-09-08 10:31:37 +08:00

10 lines
210 B
C

#ifndef __STRING_H__
#define __STRING_H__
void *memset(void *, int, unsigned int);
void *
memcpy(void *dst, const void *src, unsigned int n);
void *
memmove(void *dst, const void *src, unsigned int n);
#endif