client: check and error out on exceeding number of command line args to pass
[fio.git] / log.h
1 #ifndef FIO_LOG_H
2 #define FIO_LOG_H
3
4 #include <stdio.h>
5 #include <stdarg.h>
6
7 extern FILE *f_out;
8 extern FILE *f_err;
9
10 extern int log_err(const char *format, ...);
11 extern int log_info(const char *format, ...);
12 extern int log_local(const char *format, ...);
13 extern int log_valist(const char *str, va_list);
14
15 #endif