summaryrefslogtreecommitdiff
path: root/clog.h
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-10-29 13:37:41 -0400
committerCara Salter <cara@devcara.com>2022-10-29 13:37:41 -0400
commit9f6108784ceb997ce388e5212d36ed86ad3934df (patch)
treed0a38b3a8935333ee12cd4b893a64806412b084b /clog.h
downloadclog-9f6108784ceb997ce388e5212d36ed86ad3934df.tar.gz
clog-9f6108784ceb997ce388e5212d36ed86ad3934df.zip
Initial commit
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, ...);