mirror of
https://github.com/fail0verflow/hbc.git
synced 2024-11-17 15:19:22 +01:00
10 lines
129 B
C
10 lines
129 B
C
#ifndef _VSPRINTF_H_
|
|
#define _VSPRINTF_H_
|
|
|
|
#include <stdarg.h>
|
|
|
|
int vsprintf(char *buf, const char *fmt, va_list args);
|
|
|
|
#endif
|
|
|