2024-12-09 02:19:22 -06:00

13 lines
184 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
void memory_set_char(char * buf, char c, int size);
void memory_set_int(int * buf, int c, int size);
#ifdef __cplusplus
}
#endif