2023-11-28 00:39:00 +00:00
|
|
|
#ifndef _SMEARGLE_UTIL_H
|
|
|
|
#define _SMEARGLE_UTIL_H
|
2023-11-27 21:38:00 +00:00
|
|
|
|
2023-11-27 23:33:40 +00:00
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2023-11-27 21:38:00 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
static void error(const char *msg, const char *msg1) {
|
|
|
|
fprintf(stderr, "Error: %s%s\n", msg, msg1 ? msg1 : "");
|
|
|
|
exit(1);
|
|
|
|
}
|
2023-11-27 23:33:40 +00:00
|
|
|
|
2023-11-28 00:39:00 +00:00
|
|
|
#endif
|