mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-02 22:05:04 +02:00
13 lines
234 B
C
13 lines
234 B
C
#ifndef LOGH_
|
|
#define LOGH_
|
|
|
|
#include <stdio.h>
|
|
|
|
void log_init(FILE* fd);
|
|
void log_puts(const char* msg);
|
|
void log_printf(const char* fmt, ...);
|
|
// NOLINTNEXTLINE(readability-identifier-length)
|
|
void log_perror(const char* s);
|
|
|
|
#endif
|