blob: 676f0c7acda72886488cf305c602104c9a205aaa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _CLOG_H_
#define _CLOG_H_
#include <stdarg.h>
int lprintf(const char *format, ...);
void lfatalf(const char *format, ...);
int lvprintf(const char *format, va_list ap);
void lvfatalf(const char *format, va_list ap);
#endif
|