mirror-ac/user/common.h

9 lines
195 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__)
#endif