Search | Google it | Results 1 - 1 of 1 for funcall:strlen from t2ex/bsd_source/lib/libc/src_bsd/stdlib/strtod.c (0.00 seconds) |
109: char *decimalpoint = localeconv()->decimal_point; 110: int dplen = strlen(decimalpoint); 111: #else 116: s0 = localeconv()->decimal_point; 117: if ((decimalpoint_cache = (char*)MALLOC(strlen(s0) + 1))) { 118: strlcpy(decimalpoint_cache, s0, strlen(s0) + 1); 119: s0 = decimalpoint_cache; 120: } 121: dplen = strlen(s0); 122: }