----------------------------------------------------- interface for int to string or buffer Make sure the buffer is big enough -----------------------------------------------------
| 740 | // Make sure the buffer is big enough |
| 741 | // ----------------------------------------------------- |
| 742 | char* IntegerToString(int i, char* buffer) |
| 743 | { |
| 744 | *OutputIntegerAsString(i, buffer) = '\0'; |
| 745 | return buffer; |
| 746 | } |
| 747 | |
| 748 | char* IntegerToString(unsigned int i, char* buffer) |
| 749 | { |