tmp.c/common.h
Vincent Batts e62400400d
*: shaping into a project structure
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2025-02-10 16:29:08 -05:00

15 lines
343 B
C++

#ifndef COMMON_H_INCLUDED_
#define COMMON_H_INCLUDED_
#include <iostream>
#define log_out(hurr) \
std::cout << "[" << __FILE__ << ":" << __LINE__ << "] " << hurr << std::endl;
#define log_err(hurr) \
std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] " << hurr << std::endl;
#endif // COMMON_H_INCLUDED_
// vim:set sts=2 sw=2 et: