diff options
author | Anastasis Grammenos <anastasis.gramm2@gmail.com> | 2018-09-19 23:59:37 +0300 |
---|---|---|
committer | Anastasis Grammenos <anastasis.gramm2@gmail.com> | 2018-09-19 23:59:37 +0300 |
commit | 22fca0324c162fa9a6abc5192aea2b5453c057b5 (patch) | |
tree | b799fde22ee67221e69f8cf3c5445c0373a7cfca /src/cksearch.h | |
parent | 8702ce8bbd4d1435cc81fa8fcd7f5309d3c7b003 (diff) | |
download | ck-22fca0324c162fa9a6abc5192aea2b5453c057b5.tar.gz ck-22fca0324c162fa9a6abc5192aea2b5453c057b5.tar.bz2 ck-22fca0324c162fa9a6abc5192aea2b5453c057b5.zip |
Add list action (no docs)
Diffstat (limited to 'src/cksearch.h')
-rw-r--r-- | src/cksearch.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/cksearch.h b/src/cksearch.h new file mode 100644 index 0000000..ee06a15 --- /dev/null +++ b/src/cksearch.h @@ -0,0 +1,25 @@ +/* cksearch.h - search for stuff in ck ---------------------------------*- C -*- + * + * This file is part of ck, the config keeper + * + * ----------------------------------------------------------------------------- + * + * Copyright (C) 2018 Anastasis Grammenos + * GPLv3 (see LICENCE for the full notice) + * + * ----------------------------------------------------------------------------- + * + * Search the database and get results for programs and confing paths. + * Provides functions to match user's query to actual entries in the + * database. + * + * (TODO) Also implements the infile search, to match strings in the files + * contained in the database. + * + * -------------------------------------------------------------------------- */ +#ifndef CKSEARCH_H +#define CKSEARCH_H + + + +#endif /* CKSEARCH_H */ |