2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-16 13:46:42 +08:00
artiq/artiq/runtime/log.h
2015-11-07 12:57:18 +03:00

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 */