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

#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);

#define DDEBUG  if (debug) printf

#endif