This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

remove typos

Ivan Ilak (Apr 7, 2023, 12:33 AM +0200) 9729d1d7 48abd3c6

+2 -2
+1 -1
os/src/common/stdlib.c
··· 1 1 #include "common/stdlib.h" 2 2 #include "common/string.h" 3 3 4 - char* iota(int value) 4 + char* itoa(int value) 5 5 { 6 6 int i, sign; 7 7
+1 -1
os/src/common/string.c
··· 82 82 int i, j; 83 83 char tmp; 84 84 85 - for(i = 0, j=strlen(str); i < j; i++, j--) 85 + for(i = 0, j=strlen(str)-1; i < j; i++, j--) 86 86 { 87 87 tmp = str[i]; 88 88 str[i] = str[j];