aboutsummaryrefslogtreecommitdiffstats
path: root/src/initlog.h
blob: 20f64d1d866b7c3100ab58c5a531f2de820b685c (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, int silent);

#endif