spm-decomp/string.h

8 lines
125 B
C
Raw Normal View History

2020-09-11 18:16:24 +00:00
#ifndef STRING_H
#define STRING_H
2020-09-16 18:39:06 +00:00
#include <stddef.h>
2020-09-11 18:16:24 +00:00
void * memset(void * ptr, int value, size_t num); // 80004104
#endif