mirror of
https://github.com/fail0verflow/hbc.git
synced 2025-01-29 18:16:47 +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
|
||
|
|