Files
ac-decomp/include/libc64/sprintf.h
T
2024-01-29 20:31:47 -05:00

14 lines
159 B
C

#ifndef SPRINTF_H
#define SPRINTF_H
#ifdef __cplusplus
extern "C" {
#endif
int sprintf(char* dst, const char* fmt, ...);
#ifdef __cplusplus
}
#endif
#endif