Formatting: string.c

This commit is contained in:
Imbus 2025-06-26 10:07:31 +02:00
parent 952eeebb6d
commit 4e73eee53e

View file

@ -1,8 +1,8 @@
char *itoa(int value, char *str, int base) { char *itoa(int value, char *str, int base) {
char *p = str; char *p = str;
char *p1, *p2; char *p1, *p2;
unsigned int uvalue = value; unsigned int uvalue = value;
int negative = 0; int negative = 0;
if (base < 2 || base > 36) { if (base < 2 || base > 36) {
*str = '\0'; *str = '\0';