From 9f6108784ceb997ce388e5212d36ed86ad3934df Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Sat, 29 Oct 2022 13:37:41 -0400 Subject: Initial commit --- clog.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 clog.h (limited to 'clog.h') 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, ...); -- cgit v1.2.3