Compare commits

...
2 Commits
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ void user_interactions() {
ch = getch();
if(ch != ERR) {
if(ch != (char)ERR) {
input[input_pass] = ch;
input_pass++;
if (ch == 27) { /* esc key */
+1 -1
View File
@@ -38,7 +38,7 @@ int sort_natural(const void *file0, const void *file1){
long parsed_number0 = 0;
long parsed_number1 = 0;
char is_num = 0;
char result = 0;
signed char result = 0;
do {