mirror-ac/user/common.h
2023-09-17 13:14:02 +10:00

9 lines
No EOL
195 B
C

#ifndef COMMON_H
#define COMMON_H
#include <stdio.h>
#define LOG_INFO(fmt, ...) printf("[+] " fmt "\n", ##__VA_ARGS__)
#define LOG_ERROR(fmt, ...) printf("[-] " fmt "\n", ##__VA_ARGS__)
#endif