A few final changes for the 3.0.6 release
[pacman.git] / lib / libalpm / versioncmp.h
blob13a2d5a78570c7bba4b04e98c461de8ca9105272
1 /*
2 * versioncmp.h
3 *
4 * Copyright (c) 2005 by Judd Vinet <jvinet@zeroflux.org>
5 * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
6 * Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 * USA.
23 #ifndef _ALPM_VERSIONCMP_H
24 #define _ALPM_VERSIONCMP_H
26 #include "deps.h"
27 #include "package.h"
29 int _alpm_versioncmp(const char *a, const char *b);
31 #endif /* _ALPM_VERSIONCMP_H */
33 /* vim: set ts=2 sw=2 noet: */