| 732 | #endif /* ntoa() conversion table */ |
| 733 | |
| 734 | char * |
| 735 | SDL_itoa(int value, char *string, int radix) |
| 736 | { |
| 737 | #ifdef HAVE_ITOA |
| 738 | return itoa(value, string, radix); |
| 739 | #else |
| 740 | return SDL_ltoa((long)value, string, radix); |
| 741 | #endif /* HAVE_ITOA */ |
| 742 | } |
| 743 | |
| 744 | char * |
| 745 | SDL_uitoa(unsigned int value, char *string, int radix) |
no test coverage detected