diff options
author | Dan McGee <dan@archlinux.org> | 2012-07-12 15:29:59 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-08-02 09:39:08 -0500 |
commit | 72d3713cc7865af5f4d91410ad56ed4287be6109 (patch) | |
tree | b7a4a0ddf620e5fcdaffa85c91a7352570217f24 /lib/libalpm/package.c | |
parent | 70d8c2150e33d1a0b9e09d72c5091d661383d641 (diff) | |
download | pacman-72d3713cc7865af5f4d91410ad56ed4287be6109.tar.xz |
Move filelist functions into separate source file
We have a few of these and might as well gather them together. This also
cleans up the code a bit by using an enum instead of integer values, as
well as makes a "search for file in filelist" function public so
frontends can do better than straight linear search of the filelists.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/package.c')
-rw-r--r-- | lib/libalpm/package.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/libalpm/package.c b/lib/libalpm/package.c index 46d14731..a4c3309e 100644 --- a/lib/libalpm/package.c +++ b/lib/libalpm/package.c @@ -450,15 +450,6 @@ alpm_file_t *_alpm_file_copy(alpm_file_t *dest, return dest; } -/* Helper function for comparing files list entries - */ -int _alpm_files_cmp(const void *f1, const void *f2) -{ - const alpm_file_t *file1 = f1; - const alpm_file_t *file2 = f2; - return strcmp(file1->name, file2->name); -} - alpm_pkg_t *_alpm_pkg_new(void) { alpm_pkg_t *pkg; |