From 8636d3558523fe30a2be84549c2b6eb5e125e97c Mon Sep 17 00:00:00 2001 From: Syndamia Date: Wed, 29 Apr 2026 18:26:15 +0300 Subject: feat(String): Implement S_substr function --- String.h | 1 + 1 file changed, 1 insertion(+) (limited to 'String.h') diff --git a/String.h b/String.h index 40d0e55..2a9ef87 100644 --- a/String.h +++ b/String.h @@ -30,5 +30,6 @@ Result S_prepend(String *s, const char* str); usize S_length(String s); usize S_find(String s, char c); +String S_substr(MemoryManager *mm, String s, usize start, usize length); #endif /* _STRING */ -- cgit v1.2.3