summaryrefslogtreecommitdiffstats
path: root/bstrlen.c
diff options
context:
space:
mode:
Diffstat (limited to 'bstrlen.c')
-rw-r--r--bstrlen.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/bstrlen.c b/bstrlen.c
new file mode 100644
index 0000000..61825d5
--- /dev/null
+++ b/bstrlen.c
@@ -0,0 +1,8 @@
+#include <string.h>
+#include "bstr.h"
+#include "uint32.h"
+#include "str.h"
+
+size_t bstrlen(const char* a) {
+ if (*a) return str_len(a); else return uint32_read(a+1);
+}