| 742 | } |
| 743 | |
| 744 | char * |
| 745 | SDL_uitoa(unsigned int value, char *string, int radix) |
| 746 | { |
| 747 | #ifdef HAVE__UITOA |
| 748 | return _uitoa(value, string, radix); |
| 749 | #else |
| 750 | return SDL_ultoa((unsigned long)value, string, radix); |
| 751 | #endif /* HAVE__UITOA */ |
| 752 | } |
| 753 | |
| 754 | char * |
| 755 | SDL_ltoa(long value, char *string, int radix) |
nothing calls this directly
no test coverage detected