mirror of
https://github.com/zeldaret/ss
synced 2026-09-03 01:54:18 -04:00
15 lines
221 B
C
15 lines
221 B
C
#ifndef MSL_WMEM_H
|
|
#define MSL_WMEM_H
|
|
#include <common.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void *wmemcpy(void *, const void *, size_t);
|
|
void *wmemchr(const void *, int, size_t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|