Add initial crypto functionality
[libcontrac.git] / include / contrac / log.h
diff --git a/include/contrac/log.h b/include/contrac/log.h
new file mode 100644 (file)
index 0000000..0e7abee
--- /dev/null
@@ -0,0 +1,36 @@
+/** \ingroup contrac
+ * @file
+ * @author     David Llewellyn-Jones
+ * @version    $(VERSION)
+ *
+ * @section LICENSE
+ *
+ *
+ *
+ * @brief
+ * @section DESCRIPTION
+ *
+ *
+ *
+ */
+
+#ifndef __LOG_H
+#define __LOG_H
+
+// Includes
+
+#include <syslog.h>
+
+// Defines
+
+#define LOG(level, ...) log_priority(level, __VA_ARGS__);
+
+// Structures
+
+// Function prototypes
+
+void log_priority(int priority, const char *format, ...);
+
+// Function definitions
+
+#endif // __LOG_H