diff options
author | nobody <nobody@localhost> | 2000-04-24 03:19:31 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-04-24 03:19:31 +0800 |
commit | 6f31d60289f5d3def0cae26fd7ac0afe4d1f95ab (patch) | |
tree | 99a4d80d9f1acb9f56cf26e221bf13a312e97890 /e-util/e-util.c-8611 | |
parent | 49c2cb5af1a58b24fc08d2ce351307a4cfad96f5 (diff) | |
download | gsoc2013-evolution-GNOME_GAMES_1_1_0.tar gsoc2013-evolution-GNOME_GAMES_1_1_0.tar.gz gsoc2013-evolution-GNOME_GAMES_1_1_0.tar.bz2 gsoc2013-evolution-GNOME_GAMES_1_1_0.tar.lz gsoc2013-evolution-GNOME_GAMES_1_1_0.tar.xz gsoc2013-evolution-GNOME_GAMES_1_1_0.tar.zst gsoc2013-evolution-GNOME_GAMES_1_1_0.zip |
This commit was manufactured by cvs2svn to create tagGNOME_GAMES_1_1_0
'GNOME_GAMES_1_1_0'.
svn path=/tags/GNOME_GAMES_1_1_0/; revision=2566
Diffstat (limited to 'e-util/e-util.c-8611')
-rw-r--r-- | e-util/e-util.c-8611 | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/e-util/e-util.c-8611 b/e-util/e-util.c-8611 deleted file mode 100644 index d637b33729..0000000000 --- a/e-util/e-util.c-8611 +++ /dev/null @@ -1,41 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ -/* - * e-xml-utils.c - * Copyright (C) 2000 Helix Code, Inc. - * Author: Chris Lahey <clahey@helixcode.com> - * - * This library 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 library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. - */ - -#include "e-util.h" -#include <glib.h> - -int -g_str_compare(const void *x, const void *y) -{ - return strcmp(x, y); -} - -int -g_int_compare(const void *x, const void *y) -{ - if ( GPOINTER_TO_INT(x) < GPOINTER_TO_INT(y) ) - return -1; - else if ( GPOINTER_TO_INT(x) == GPOINTER_TO_INT(y) ) - return 0; - else - return -1; -} |