get the decimal point character of the current locale */
| 277 | |
| 278 | /* get the decimal point character of the current locale */ |
| 279 | static unsigned char get_decimal_point(void) |
| 280 | { |
| 281 | #ifdef ENABLE_LOCALES |
| 282 | struct lconv *lconv = localeconv(); |
| 283 | return (unsigned char) lconv->decimal_point[0]; |
| 284 | #else |
| 285 | return '.'; |
| 286 | #endif |
| 287 | } |
| 288 | |
| 289 | typedef struct |
| 290 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…