11 lines
234 B
C
11 lines
234 B
C
#ifndef ULIB_WRITE_WRITE_H_
|
|
#define ULIB_WRITE_WRITE_H_
|
|
|
|
#include <stdarg.h>
|
|
|
|
void writefmt(char *fmt, ...);
|
|
void writevfmt(char *fmt, va_list list);
|
|
void writevsfmt(char *buf, char *fmt, va_list list);
|
|
|
|
#endif // ULIB_WRITE_WRITE_H_
|