initscripts/src/initlog.h

21 lines
302 B
C
Raw Normal View History

2011-04-26 12:26:24 +02:00
#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