aboutsummaryrefslogtreecommitdiffstats
path: root/src/initlog.h
blob: 184c916c67e2101ba4fee2bc83c8dd9a0d3db66f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#define _GNU_SOURCE	1

#ifndef INITLOG_H
#define INITLOG_H

struct logInfo {
    char *cmd;
    char *line;
    int fac;
    int pri;
};

char *getLine(char **data);
int logString(char *cmd, char *string);
int processArgs(int argc, char **argv);

#endif