aboutsummaryrefslogtreecommitdiff
path: root/include/str.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2023-11-20 00:29:58 -0500
committerJoseph Hunkeler <jhunkeler@gmail.com>2023-11-20 00:29:58 -0500
commit62edbefaffeb2f9d3a52193c2e0d54c77acbcc40 (patch)
tree5e27986820bf2bf54c7e5c5b357ce0a27f971e95 /include/str.h
parent9e8edf8918c9e79386b4b07f7bc6b2528cea98fb (diff)
downloadstasis-62edbefaffeb2f9d3a52193c2e0d54c77acbcc40.tar.gz
Rebranding
Diffstat (limited to 'include/str.h')
-rw-r--r--include/str.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/str.h b/include/str.h
index d0fc819..8b8e71c 100644
--- a/include/str.h
+++ b/include/str.h
@@ -1,20 +1,20 @@
/**
* @file str.h
*/
-#ifndef OHMYCAL_STR_H
-#define OHMYCAL_STR_H
+#ifndef OMC_STR_H
+#define OMC_STR_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <ctype.h>
-#include "ohmycal.h"
+#include "omc.h"
-#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
+#define OMC_SORT_ALPHA 1 << 0
+#define OMC_SORT_NUMERIC 1 << 1
+#define OMC_SORT_LEN_ASCENDING 1 << 2
+#define OMC_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 //OHMYCAL_STR_H
+#endif //OMC_STR_H