summaryrefslogtreecommitdiff
path: root/clog.h
diff options
context:
space:
mode:
Diffstat (limited to 'clog.h')
-rw-r--r--clog.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/clog.h b/clog.h
new file mode 100644
index 0000000..67c11f4
--- /dev/null
+++ b/clog.h
@@ -0,0 +1,25 @@
+/*
+ * =====================================================================================
+ *
+ * Filename: log.h
+ *
+ * Description: Header file for logging framework
+ *
+ * Version: 1.0
+ * Created: 10/27/2022 09:56:57 AM
+ * Revision: none
+ * Compiler: gcc
+ *
+ * Author: Cara Salter (cara@devcara.com)
+ * Organization:
+ *
+ * =====================================================================================
+ */
+
+
+/* ##### EXPORTED FUNCTION DECLARATIONS ######################################### */
+
+int debug(char* msg, ...);
+int info(char* msg, ...);
+int warning(char* msg, ...);
+int error(char* msg, ...);