소스 검색

Revert "Use library function for numeric sort"

This reverts commit 1b494b0d26.
master
Arun Prakash Jana 6 년 전
부모
커밋
b57e209242
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -3
      src/nnn.c

+ 1
- 3
src/nnn.c 파일 보기

@@ -1038,7 +1038,6 @@ static bool xdiraccess(const char *path)
return TRUE;
}

#if 0
/*
* We assume none of the strings are NULL.
*
@@ -1092,7 +1091,6 @@ static int xstricmp(const char * const s1, const char * const s2)

return strcoll(s1, s2);
}
#endif

/* Return the integer value of a char representing HEX */
static char xchartohex(char c)
@@ -1169,7 +1167,7 @@ static int entrycmp(const void *va, const void *vb)
return -1;
}

return strverscmp(pa->name, pb->name);
return xstricmp(pa->name, pb->name);
}

/*


불러오는 중...
취소
저장