mcabber/mcabber/utils.c
changeset 2338 6424627913be
parent 2309 e00ae0763468
child 2346 7921c8d671c8
equal deleted inserted replaced
2337:ffd0e57e9563 2338:6424627913be
   601   /* it's okay as far as we can tell */
   601   /* it's okay as far as we can tell */
   602   return 0;
   602   return 0;
   603 }
   603 }
   604 
   604 
   605 
   605 
   606 inline void mc_strtolower(char *str)
   606 void mc_strtolower(char *str)
   607 {
   607 {
   608   if (!str) return;
   608   if (!str) return;
   609   for ( ; *str; str++)
   609   for ( ; *str; str++)
   610     *str = tolower(*str);
   610     *str = tolower(*str);
   611 }
   611 }