mirror of https://github.com/m-labs/artiq.git
18 lines
318 B
C
18 lines
318 B
C
#ifndef __LOG_H
|
|
#define __LOG_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define LOG_BUFFER_SIZE 4096
|
|
|
|
void lognonl_va(const char *fmt, va_list args);
|
|
void lognonl(const char *fmt, ...);
|
|
|
|
void log_va(const char *fmt, va_list args);
|
|
void log(const char *fmt, ...);
|
|
|
|
void log_get(char *outbuf);
|
|
void log_clear(void);
|
|
|
|
#endif /* __LOG_H */
|