diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2009-05-27 20:36:31 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2009-06-01 23:55:33 +0800 |
commit | 4a3f9aa43df81215cbb0ad1ae1c00702798f44f9 (patch) | |
tree | d71ff964e026cf8ca1227bf6f09122f7e6e7f320 /libempathy/empathy-utils.c | |
parent | b430108ed73aad05a6cb6f94bdb7092abe4daebc (diff) | |
download | gsoc2013-empathy-4a3f9aa43df81215cbb0ad1ae1c00702798f44f9.tar gsoc2013-empathy-4a3f9aa43df81215cbb0ad1ae1c00702798f44f9.tar.gz gsoc2013-empathy-4a3f9aa43df81215cbb0ad1ae1c00702798f44f9.tar.bz2 gsoc2013-empathy-4a3f9aa43df81215cbb0ad1ae1c00702798f44f9.tar.lz gsoc2013-empathy-4a3f9aa43df81215cbb0ad1ae1c00702798f44f9.tar.xz gsoc2013-empathy-4a3f9aa43df81215cbb0ad1ae1c00702798f44f9.tar.zst gsoc2013-empathy-4a3f9aa43df81215cbb0ad1ae1c00702798f44f9.zip |
Add a helper uint_compare function
Diffstat (limited to 'libempathy/empathy-utils.c')
-rw-r--r-- | libempathy/empathy-utils.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libempathy/empathy-utils.c b/libempathy/empathy-utils.c index b5c3a0e7e..9bcd65683 100644 --- a/libempathy/empathy-utils.c +++ b/libempathy/empathy-utils.c @@ -380,3 +380,10 @@ empathy_check_available_state (void) return TRUE; } +gint +empathy_uint_compare (gconstpointer a, + gconstpointer b) +{ + return *(guint*) a - *(guint*) b; +} + |