11 lines
218 B
C
11 lines
218 B
C
#ifndef UTILS_H_
|
|
|
|
#include <stdio.h>
|
|
|
|
#define ERR(ret,msg) do { fputs(msg "\n", stderr); return (ret); } while (0)
|
|
#define ERRMSG(msg) fputs(msg "\n", stderr)
|
|
#define PERROR(name) perror(name)
|
|
|
|
#define UTILS_H_
|
|
#endif
|