Changeset 7a2a486
- Timestamp:
- 2012-06-03T23:08:43Z (13 years ago)
- Branches:
- master
- Children:
- 7d2ce9a
- Parents:
- 7de784c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
bitlbee.h
r7de784c r7a2a486 107 107 #define g_main_quit __PLEASE_USE_B_MAIN_QUIT__ 108 108 109 /* And now, because GLib folks think everyone loves typing ridiculously long 110 function names ... no I don't or I'd write BitlBee in Java, ffs. */ 111 #define g_strcasecmp g_ascii_strcasecmp 112 #define g_strncasecmp g_ascii_strncasecmp 113 109 114 #ifndef G_GNUC_MALLOC 110 115 /* Doesn't exist in GLib <=2.4 while everything else in BitlBee should -
lib/xmltree.c
r7de784c r7a2a486 30 30 #include "xmltree.h" 31 31 32 #define g_strcasecmp g_ascii_strcasecmp 33 #define g_strncasecmp g_ascii_strncasecmp 34 32 35 static void xt_start_element( GMarkupParseContext *ctx, const gchar *element_name, const gchar **attr_names, const gchar **attr_values, gpointer data, GError **error ) 33 36 { -
protocols/oscar/oscar.c
r7de784c r7a2a486 253 253 g_return_val_if_fail((s != NULL), NULL); 254 254 255 u = t = g_strdup(s); 256 g_strdown(t); 255 u = t = g_ascii_strdown(s, -1); 257 256 258 257 while (*t && (x < BUF_LEN - 1)) {
Note: See TracChangeset
for help on using the changeset viewer.