From 15fa13b86c804b8de1eb1a7229c176af92d4fc74 Mon Sep 17 00:00:00 2001 From: "me@ow.nekobit.net" Date: Tue, 29 Mar 2022 11:15:37 +0000 Subject: [PATCH] Delete file meant for Treebird lol FossilOrigin-Name: 567ffb89270dc493a023def045de0466412e9d7230329ee77619f9e9021fa67c --- src/navigation.c | 34 ---------------------------------- src/navigation.h | 26 -------------------------- 2 files changed, 60 deletions(-) delete mode 100644 src/navigation.c delete mode 100644 src/navigation.h diff --git a/src/navigation.c b/src/navigation.c deleted file mode 100644 index 870eff3..0000000 --- a/src/navigation.c +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Treebird - Lightweight frontend for Pleroma - * Copyright (C) 2022 Nekobit - * - * 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 . - */ - -#include "navigation.h" - -#include "easprintf.h" - -// Pages -#include "../static/navigation.chtml" - -char* construct_navigation_box(char* prev_id, char* next_id, size_t size) -{ - char* nav_html; - - size_t s = easprintf(&nav_html, data_navigation_html, - prev_id, - next_id); - if ( -} diff --git a/src/navigation.h b/src/navigation.h deleted file mode 100644 index b3ada73..0000000 --- a/src/navigation.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Treebird - Lightweight frontend for Pleroma - * Copyright (C) 2022 Nekobit - * - * 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 . - */ - -#ifndef NAVIGATION_H -#define NAVIGATION_H -#include -#include - -char* construct_navigation_box(char* prev_id, char* next_id, size_t size); - -#endif // NAVIGATION_H