- Detailed file information
- Media information (needs mediainfo or exiftool, if specified)
- Ordering
- - Numeric order (1, 2, ... 10, 11, ...) for numeric names
- Sort by modification time, size
- Convenience
- Create, rename files and directories
return TRUE;
}
+#if 0
/*
* We assume none of the strings are NULL.
*
* E.g., the order '1, 10, 2' doesn't make sense to human eyes.
*
* If the absolute numeric values are same, we fallback to alphasort.
+ *
+ * NOTE: This API is replaced by strcoll().
*/
static int
xstricmp(char *s1, char *s2)
return (int) (TOUPPER(*s1) - TOUPPER(*s2));
}
+#endif
/* Return the integer value of a char representing HEX */
static char
return -1;
}
- return xstricmp(pa->name, pb->name);
+ return strcoll(pa->name, pb->name);
}
/*