spm-decomp/string.h
2020-09-16 19:39:06 +01:00

8 lines
125 B
C

#ifndef STRING_H
#define STRING_H
#include <stddef.h>
void * memset(void * ptr, int value, size_t num); // 80004104
#endif