diff options
Diffstat (limited to 'src/clog.c')
-rw-r--r-- | src/clog.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -67,6 +67,7 @@ int get_index(struct http_request *req); int get_entry(struct http_request *req); int edit_entry(struct http_request *req); int update_entry(struct http_request *req); +int search_entries(struct http_request *req); int sql_select(struct entry_query *eq); int sql_update(const char *id, const char *title, const char *body); @@ -407,6 +408,19 @@ out: ; return KORE_RESULT_OK; } + +int search_entries(struct http_request *req) { + // int err = 0; + + kore_log(LOG_INFO, "search ...."); + + http_err_resp(req, HTTP_STATUS_OK); + +// out: ; + + return KORE_RESULT_OK; +} + int sql_select(struct entry_query *eq) { int err = KORE_RESULT_OK; |