aboutsummaryrefslogtreecommitdiff
path: root/src/include/util.h
blob: a2f887b8364ebf1a279be43bcdac5567d28e0d39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef UTIL_H
#define UTIL_H

#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>


/* die and leave message */
void die(const char*, ...);
/* log an error */
void log_err(const char*, ...);
/* log some information */
void log_inf(const char*, ...);
/* log something with no formatting */
void log_raw(const char*, ...);
/* log a warning */
void log_war(const char*, ...);

/* does c appear in s? */
int appears_in_str(char*, char*);

#endif