From 9695ea005d4af93dcd60f74f10fd3c54499a182f Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Thu, 11 Nov 2021 16:31:58 -0800 Subject: chore: split up base library into individual files for smaller binaries --- sys/base/string/len.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 sys/base/string/len.c (limited to 'sys/base/string/len.c') diff --git a/sys/base/string/len.c b/sys/base/string/len.c new file mode 100644 index 0000000..5e42919 --- /dev/null +++ b/sys/base/string/len.c @@ -0,0 +1,17 @@ +#include "internal.h" + +// len returns the length of the string. +int +str·len(const string s) +{ + Hdr* h = (Hdr*)(s - sizeof(Hdr)); + return h->len; +} + +// cap returns the capacity of the string buffer. +int +str·cap(const string s) +{ + Hdr* h = (Hdr*)(s - sizeof(Hdr)); + return h->cap; +} -- cgit v1.2.1