Vhex-kernel/include/lib/stdio.h

13 lines
306 B
C

#ifndef __LIB_STDIO_H__
# define __LIB_STDIO_H__
#include <stddef.h>
#include <stdint.h>
#include <stdarg.h>
/* vsprintf(), sprintf() - formatted output conversion. */
void vsprintf(char *str, char const *format, va_list ap);
void sprintf(char *str, char const *format, ...);
#endif /*__LIB_STDIO_H__*/