src/libpakfire/execute.c \
src/libpakfire/file.c \
src/libpakfire/filelist.c \
- src/libpakfire/filter.c \
src/libpakfire/key.c \
src/libpakfire/logging.c \
src/libpakfire/package.c \
src/libpakfire/include/pakfire/execute.h \
src/libpakfire/include/pakfire/file.h \
src/libpakfire/include/pakfire/filelist.h \
- src/libpakfire/include/pakfire/filter.h \
src/libpakfire/include/pakfire/i18n.h \
src/libpakfire/include/pakfire/key.h \
src/libpakfire/include/pakfire/logging.h \
+++ /dev/null
-/*#############################################################################
-# #
-# Pakfire - The IPFire package management system #
-# Copyright (C) 2013 Pakfire development team #
-# #
-# 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 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 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 <http://www.gnu.org/licenses/>. #
-# #
-#############################################################################*/
-
-#include <stdlib.h>
-
-#include <pakfire/filter.h>
-#include <pakfire/private.h>
-#include <pakfire/types.h>
-#include <pakfire/util.h>
-
-PAKFIRE_EXPORT PakfireFilter pakfire_filter_create(void) {
- PakfireFilter filter = calloc(1, sizeof(*filter));
-
- return filter;
-}
-
-PAKFIRE_EXPORT void pakfire_filter_free(PakfireFilter filter) {
- free(filter->match);
- free(filter);
-}
+++ /dev/null
-/*#############################################################################
-# #
-# Pakfire - The IPFire package management system #
-# Copyright (C) 2013 Pakfire development team #
-# #
-# 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 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 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 <http://www.gnu.org/licenses/>. #
-# #
-#############################################################################*/
-
-#ifndef PAKFIRE_FILTER_H
-#define PAKFIRE_FILTER_H
-
-#include <pakfire/types.h>
-
-PakfireFilter pakfire_filter_create(void);
-void pakfire_filter_free(PakfireFilter filter);
-
-#ifdef PAKFIRE_PRIVATE
-
-struct _PakfireFilter {
- int cmp_type;
- int keyname;
- char* match;
-};
-
-#endif
-
-#endif /* PAKFIRE_FILTER_H */
typedef struct _PakfireArchiveSignature* PakfireArchiveSignature;
typedef struct _PakfireFile* PakfireFile;
typedef struct _PakfireFilelist* PakfireFilelist;
-typedef struct _PakfireFilter* PakfireFilter;
typedef struct _PakfireKey* PakfireKey;
typedef struct _PakfirePackage* PakfirePackage;
typedef struct _PakfirePackageList* PakfirePackageList;