9 lines
191 B
C
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 */ |