18 uintptr_t key = (uintptr_t)ptr;
19 key = (~key) + (key << 18);
25 return key & SIZE_MAX;
37 hash = (hash << 5) - hash + *str++;
49 for (
size_t i = 0; i < text.
length; i++)
51 hash = (hash << 5) - hash + text.text[i];
60 return (c >=
'a' && c <=
'z') || (c >=
'A' && c <=
'Z');
66 return c >=
'0' && c <=
'9';
83 return lhs == rhs || strcmp(lhs, rhs) == 0;
108 return strncmp(lhs, rhs, length);
117 return strcmp(lhs, rhs);
126 return strncpy(dst, src,
size);
135 return memcpy(dst, src,
size);
144 return memmove(dst, src,
size);
152 memset(dst, value,
size);
161 return strstr(haystack, needle);
169 text_t result = { text, length };
STA_DECL int ctu_strcmp(const char *lhs, const char *rhs)
compare two strings equivalent to strcmp but with safety checks
STA_DECL bool ctu_isalnum(int c)
check if a character is alphanumeric
STA_DECL CT_NOALIAS void * ctu_memcpy(void *restrict dst, const void *restrict src, size_t size)
STA_DECL bool ctu_isdigit(int c)
check if a character is a digit
STA_DECL void * ctu_memmove(void *dst, const void *src, size_t size)
STA_DECL bool ctu_string_empty(const char *str)
check if a string is empty equivalent to strlen(str) == 0
STA_DECL char * ctu_strstr(const char *haystack, const char *needle)
find a substring in a string equivalent to strstr but with safety checks
STA_DECL ctu_hash_t text_hash(text_view_t text)
hash a string with a provided length
STA_DECL text_view_t text_view_from(const char *text)
create a new non-owning text array this is a shortcut for
STA_DECL int ctu_strncmp(const char *lhs, const char *rhs, size_t length)
compare two strings equivalent to strncmp but with safety checks
STA_DECL bool str_equal(const char *lhs, const char *rhs)
compare strings equality
STA_DECL ctu_hash_t str_hash(const char *str)
hash a string
STA_DECL CT_NOALIAS void ctu_memset(void *dst, int value, size_t size)
STA_DECL size_t ctu_strlen(const char *str)
get the length of a string not including the null terminator equivalent to strlen but with safety che...
STA_DECL char * ctu_strcpy(char *dst, const char *src, size_t size)
STA_DECL text_view_t text_view_make(const char *text, size_t length)
STA_DECL text_t text_make(char *text, size_t length)
STA_DECL bool ctu_isalpha(int c)
check if a character is a letter
bool text_equal(text_view_t lhs, text_view_t rhs)
check if two text objects are equal
STA_DECL text_t text_from(char *text)
create a new owning text array this is a shortcut for
STA_DECL ctu_hash_t ctu_ptrhash(const void *ptr)
hash a pointer value
#define STA_DECL
sal2 annotation on function implementations to copy annotations from the declaration
#define IN_STRING
annotate a parameter as being a null terminated string
#define CT_NOALIAS
mark a function as only modifying pointers passed to it the same as CT_CONSTFN but allowed to modify/...
STA_DECL bool is_path_special(const char *path)
check if a path is special special paths are paths such as "." and ".." that are not valid for most o...
#define CTASSERT(expr)
assert a condition, prints the condition as a message
a non-owning view of text
size_t length
the number of characters in the text