aboutsummaryrefslogtreecommitdiffstats
path: root/src/initlog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/initlog.h')
-rw-r--r--src/initlog.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/initlog.h b/src/initlog.h
new file mode 100644
index 00000000..244ff9a0
--- /dev/null
+++ b/src/initlog.h
@@ -0,0 +1,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