blob: ee06a15cb93ed1f3641626cefa6ab1cfd09aeadf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 */
|