mirror-ac/user/common.h

11 lines
197 B
C
Raw Normal View History

2023-08-15 14:02:17 +02:00
#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__)
2023-12-27 04:35:46 +01:00
2023-08-15 14:02:17 +02:00
#endif