comparison mcabber/mcabber/utils.c @ 2338:6424627913be

Don't try to inline public functions
author franky
date Sun, 12 May 2019 13:17:36 +0200
parents e00ae0763468
children 7921c8d671c8
comparison
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 }