Search | Google it | Results 1 - 1 of 1 for funcall:strlen from t2ex/bsd_source/lib/libc/src_bsd/stdlib/strtodg.c (0.00 seconds) |
358: char *decimalpoint = localeconv()->decimal_point; 359: int dplen = strlen(decimalpoint); 360: #else 365: s0 = localeconv()->decimal_point; 366: if ((decimalpoint_cache = (char*)MALLOC(strlen(s0) + 1))) { 367: strlcpy(decimalpoint_cache, s0, strlen(s0) + 1); 368: s0 = decimalpoint_cache; 369: } 370: dplen = strlen(s0); 371: }