mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-05 19:25:12 +01:00
5 lines
147 B
C
5 lines
147 B
C
#include <stdarg.h>
|
|
|
|
int vsprintf(char *buf, const char *fmt, va_list args);
|
|
int vsnprintf(char *buf, size_t size, const char *fmt, va_list args);
|