Update static aliases to be lower case
This commit is contained in:
parent
75acf7da5d
commit
fc951c8bd8
@ -17,11 +17,11 @@
|
||||
#define f64 double
|
||||
#define f128 long double
|
||||
|
||||
#define INTERNAL static
|
||||
#define PERSISTENT static
|
||||
#define internal static
|
||||
#define persistent static
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define CLASS_MEMBER static
|
||||
#define class_mem static
|
||||
#endif // __cplusplus
|
||||
|
||||
#endif // !ALIASES_H
|
||||
|
@ -5,9 +5,9 @@
|
||||
#include <string.h>
|
||||
|
||||
#if defined(__unix__) || defined(__APPLE__) || defined(__ANDROID__)
|
||||
INTERNAL char path_sep = '/';
|
||||
internal char path_sep = '/';
|
||||
#elif defined(_WIN32) || defined(_WIN64)
|
||||
INTERNAL char path_sep = '\\';
|
||||
internal char path_sep = '\\';
|
||||
#endif
|
||||
|
||||
void join_root_and_leaf(const char *root, const char *leaf, char *dst);
|
||||
|
Loading…
Reference in New Issue
Block a user