SmartFolder  1.0
SmartFolder is a way to search files on your system and group the results. The program will interpret search queries and create a folder with symbolic links to all the found matches.
Logger.h
Go to the documentation of this file.
1 
10 #ifndef _LOGGER_H_
11 #define _LOGGER_H_
12 
16 #ifndef LOG_LEVEL
17 #define LOG_LEVEL 1
18 #endif
19 
20 #include <stdio.h>
21 #include <stdarg.h>
22 
35 void logMessage(int level, const char* format, ...);
36 
37 #endif /* end of include guard: _LOGGER_H_ */
void logMessage(int level, const char *format,...)
Definition: Logger.c:12