blob: 08297d6afc300c3632802bd92d413401502641e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* vsprintf.h
*
* A very basic implmentation of thr vsprintf function
*/
#ifndef _VSPRINTF_H
#define _VSPRINTF_H
#include <stdarg.h>
int vsprintf(char*, char*, va_list);
#endif
|