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.
Daemon.h
Go to the documentation of this file.
1 
10 #ifndef _DEAMON_H_
11 #define _DEAMON_H_
12 
13 #include "Parser.h"
14 #include "Linker.h"
15 #include "HashSet.h"
16 
26 void incrementalSearch(const char** expression, int exprLen, char* searchFolder, char* smartFolder, HashSet* files,
27  List* filesList);
28 
29 #endif /* end of include guard: _DEAMON_H_ */
Header file that contains the definitions of our Parser.
Header file that contains the definitions for the functions that will take care of the SmartFolder cr...
Definition: List.h:22
void incrementalSearch(const char **expression, int exprLen, char *searchFolder, char *smartFolder, HashSet *files, List *filesList)
Definition: Daemon.c:12
Header file that contains the definitions for a HashSet data structure containing Strings...
Definition: HashSet.h:18