aboutsummaryrefslogtreecommitdiff
path: root/include/search.h
diff options
context:
space:
mode:
authordacctal <donotcontactmevia@email.invalid>2026-07-18 03:23:44 +0000
committerdacctal <donotcontactmevia@email.invalid>2026-07-18 03:23:44 +0000
commit7e145a01a440c15aa3f0c1859cd543f4f7a36d4c (patch)
treed2372e34199a63e83420e8527d769aa647256f69 /include/search.h
parent9efe3b443e6f84f75ecfb6d5193ae1ff1eb3d485 (diff)
search and list are done!!!
Diffstat (limited to 'include/search.h')
-rw-r--r--include/search.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/search.h b/include/search.h
new file mode 100644
index 0000000..233537b
--- /dev/null
+++ b/include/search.h
@@ -0,0 +1,27 @@
+/*
+
+ pkgit - package it!
+
+ Copyright (C) 2026 dacctal
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 2 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+*/
+
+#ifndef PKGIT_SEARCH_H
+#define PKGIT_SEARCH_H
+
+void list_installed(void);
+void search(char* arg);
+
+#endif