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

#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);
void processArgs(int argc, char **argv);

#endif