mirror-ac/user/common.h
lhodges1 c68473090b e
2023-12-27 14:35:46 +11:00

11 lines
No EOL
197 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