diff options
author | June McEnroe <june@causal.agency> | 2020-07-09 18:57:29 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-09 18:57:29 -0400 |
commit | 7b521cf75376ccfd38c2ff077c854b408fe616ff (patch) | |
tree | 4e510cf548fc02e9a7cbbf6bc209259d5ec06428 /search.c | |
parent | Implement basic contexts listing (diff) | |
download | scooper-7b521cf75376ccfd38c2ff077c854b408fe616ff.tar.gz scooper-7b521cf75376ccfd38c2ff077c854b408fe616ff.zip |
Split code and add breadcrumb nav
Diffstat (limited to 'search.c')
-rw-r--r-- | search.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/search.c b/search.c new file mode 100644 index 0000000..c9a9044 --- /dev/null +++ b/search.c @@ -0,0 +1,26 @@ +/* Copyright (C) 2020 C. McEnroe <june@causal.agency> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include <err.h> +#include <stdio.h> +#include <stdlib.h> +#include <sysexits.h> + +#include "server.h" + +enum kcgi_err pageSearch(struct kreq *req) { + return httpFail(req, KHTTP_501); +} |