From 1b494b0d26f1ff529aa6a6c1dd3768bcaa3aa0a6 Mon Sep 17 00:00:00 2001
From: Arun Prakash Jana <engineerarun@gmail.com>
Date: Tue, 22 Jan 2019 21:30:53 +0530
Subject: [PATCH] Use library function for numeric sort

---
 src/nnn.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/nnn.c b/src/nnn.c
index 43782d28..1fb09f85 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -1038,6 +1038,7 @@ static bool xdiraccess(const char *path)
 	return TRUE;
 }
 
+#if 0
 /*
  * We assume none of the strings are NULL.
  *
@@ -1091,6 +1092,7 @@ 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)
@@ -1167,7 +1169,7 @@ static int entrycmp(const void *va, const void *vb)
 			return -1;
 	}
 
-	return xstricmp(pa->name, pb->name);
+	return strverscmp(pa->name, pb->name);
 }
 
 /*
-- 
2.51.0