netex/src/net/include/netex.h
2023-12-26 02:55:18 +01:00

14 lines
394 B
C

#ifndef NETEX_H
#define NETEX_H
#include <stdio.h>
#define PRINT(msg, args...) fprintf(stdout, msg, ##args)
#define PRINT_LINE(msg, args...) fprintf(stdout, msg "\n", ##args)
#define WARN(msg, args...) fprintf(stdout, "[Warning]: " msg "\n", ##args)
#define ERROR(msg, args...) fprintf(stderr, "[ERROR]: " msg "\n", ##args)
void netex_init(void);
void netex_shutdown(void);
#endif //NETEX_H