Files
mini-riscv-os/09-MemoryAllocator/include/string.h
ianchen0119 0f79689961 add ch9
2021-08-07 22:19:30 +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