From b9f80a2b37edf9682f189b406542b3f7a93b24a3 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Wed, 2 Apr 2025 20:54:37 +0300 Subject: Moved directory and some experimental changes --- c_implementation/include/libaklog.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 c_implementation/include/libaklog.h (limited to 'c_implementation/include/libaklog.h') diff --git a/c_implementation/include/libaklog.h b/c_implementation/include/libaklog.h new file mode 100644 index 0000000..31478a7 --- /dev/null +++ b/c_implementation/include/libaklog.h @@ -0,0 +1,24 @@ +#ifndef AKLOG +#define AKLOG + +typedef enum { + INFO, + WARNING, + ERROR, + EXIT, + DEBUG +} LogMessageType; + +void ak_log_print_log_line(char* line); +void ak_log_follow(); +void ak_log_grep(char* string); +void ak_log_rotate(); +int ak_log_write_to_file(char* message); +void ak_log_message(const char* program, LogMessageType lmtype, char* message); +void ak_log_exit(const char* program, char* message); +void ak_log_warning(const char* program, char* message); +void ak_log_debug(const char* program, char* message); +void ak_log_error(const char* program, char* message); +void ak_log_info(const char* program, char* message); + +#endif // AKLOG -- cgit v1.2.3