| 464 | } |
| 465 | |
| 466 | void strtoupper(char *t, const char *s) |
| 467 | { |
| 468 | if(!s) s = t; |
| 469 | while(*s) |
| 470 | { |
| 471 | *t = toupper(*s); |
| 472 | t++; s++; |
| 473 | } |
| 474 | *t = '\0'; |
| 475 | } |
| 476 | |
| 477 | const char *atoip(const char *s, enet_uint32 *ip) |
| 478 | { |
no outgoing calls
no test coverage detected