commit 711f006
uint
·
2026-01-25 21:02:17 +0000 UTC
parent ce95006
rename paradosd.c->parados.c, move logmsg decleration to log.h
2 files changed,
+10,
-1
+9,
-0
1@@ -0,0 +1,9 @@
2+#ifndef LOG_H
3+#define LOG_H
4+
5+#include <stdbool.h>
6+
7+void logmsg(bool verbose, const char* tag, const char* fmt, ...);
8+
9+#endif /* LOG_H */
10+
R server/paradosd.c =>
server/parados.c
+1,
-1
1@@ -21,9 +21,9 @@
2
3 #include "config.h"
4 #include "http.h"
5+#include "log.h"
6
7 void die(const char* s, int e);
8-void logmsg(bool verbose, const char* tag, const char* fmt, ...);
9 void run(void);
10 void setup(void);
11 int write_all(int fd, const void* buf, size_t n);