mirror of
https://github.com/FIX94/hbc.git
synced 2024-11-01 00:25:09 +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
|
|
|