| 365 | } |
| 366 | |
| 367 | char* dStrlwr(char *str) |
| 368 | { |
| 369 | #if defined(TORQUE_OS_WIN) |
| 370 | return _strlwr(str); |
| 371 | #else |
| 372 | if (str == NULL) |
| 373 | return(NULL); |
| 374 | |
| 375 | char* saveStr = str; |
| 376 | while (*str) |
| 377 | { |
| 378 | *str = tolower(*str); |
| 379 | str++; |
| 380 | } |
| 381 | return saveStr; |
| 382 | #endif |
| 383 | } |
| 384 | |
| 385 | //------------------------------------------------------------------------------ |
| 386 |
no outgoing calls
no test coverage detected