From 776fa26053f7bf2f399279aaf77e9de9ab771c44 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 3 Nov 2023 13:32:28 -0400 Subject: Rebrand SPM to OHMYCAL --- src/str.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/str.c b/src/str.c index c9c6767..8e52611 100644 --- a/src/str.c +++ b/src/str.c @@ -488,13 +488,13 @@ void strsort(char **arr, unsigned int sort_mode) { // Default mode is alphabetic sort compar fn = _strsort_alpha_compare; - if (sort_mode == SPM_SORT_LEN_DESCENDING) { + if (sort_mode == OHMYCAL_SORT_LEN_DESCENDING) { fn = _strsort_dsc_compare; - } else if (sort_mode == SPM_SORT_LEN_ASCENDING) { + } else if (sort_mode == OHMYCAL_SORT_LEN_ASCENDING) { fn = _strsort_asc_compare; - } else if (sort_mode == SPM_SORT_ALPHA) { + } else if (sort_mode == OHMYCAL_SORT_ALPHA) { fn = _strsort_alpha_compare; // ^ still selectable though ^ - } else if (sort_mode == SPM_SORT_NUMERIC) { + } else if (sort_mode == OHMYCAL_SORT_NUMERIC) { fn = _strsort_numeric_compare; } -- cgit