diff options
Diffstat (limited to 'c_implementation/include/libaklog.h')
-rw-r--r-- | c_implementation/include/libaklog.h | 24 |
1 files changed, 24 insertions, 0 deletions
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 |