summaryrefslogtreecommitdiff
path: root/src/std/str.c
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-11 15:35:40 +1100
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-03-11 15:35:40 +1100
commit1c6ec0b7b8e437a003137428636149132d998357 (patch)
treeada9de786fa292cb622e66d9491834179307f392 /src/std/str.c
parent8019f49a4b0d657f882c148ae6582da78a7d2262 (diff)
added a path_parent function to get path of a file
Now we can load .mtl files without hardcoding the full path from top-level like before. that was a hack!
Diffstat (limited to 'src/std/str.c')
-rw-r--r--src/std/str.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/std/str.c b/src/std/str.c
index 1c687fa..07a8e73 100644
--- a/src/std/str.c
+++ b/src/std/str.c
@@ -5,6 +5,8 @@
str8 str8_create(u8* buf, size_t len) { return (str8){ .buf = buf, .len = len }; }
+str8 str8_cstr_view(char* string) { return str8_create((u8*)string, strlen(string)); }
+
bool str8_equals(str8 a, str8 b) {
if (a.len != b.len) {
return false;