mirror of
https://github.com/cccriscv/mini-riscv-os.git
synced 2025-11-16 04:24:33 +00:00
10 lines
210 B
C
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 |