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 --- include/str.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/str.h') diff --git a/include/str.h b/include/str.h index 1c67eda..d0fc819 100644 --- a/include/str.h +++ b/include/str.h @@ -1,8 +1,8 @@ /** * @file str.h */ -#ifndef SPM_STR_H -#define SPM_STR_H +#ifndef OHMYCAL_STR_H +#define OHMYCAL_STR_H #include #include @@ -11,10 +11,10 @@ #include #include "ohmycal.h" -#define SPM_SORT_ALPHA 1 << 0 -#define SPM_SORT_NUMERIC 1 << 1 -#define SPM_SORT_LEN_ASCENDING 1 << 2 -#define SPM_SORT_LEN_DESCENDING 1 << 3 +#define OHMYCAL_SORT_ALPHA 1 << 0 +#define OHMYCAL_SORT_NUMERIC 1 << 1 +#define OHMYCAL_SORT_LEN_ASCENDING 1 << 2 +#define OHMYCAL_SORT_LEN_DESCENDING 1 << 3 int num_chars(const char *sptr, int ch); int startswith(const char *sptr, const char *pattern); @@ -44,4 +44,4 @@ int isdigit_s(const char *s); char *tolower_s(char *s); char *to_short_version(const char *s); -#endif //SPM_STR_H +#endif //OHMYCAL_STR_H -- cgit