From 36dc1f859a13e428c441fc8f4f35550fe12ed72f Mon Sep 17 00:00:00 2001 From: nasr Date: Sun, 19 Apr 2026 18:38:22 +0200 Subject: feature(base): refactored the base library. removed some files etc and did stuff --- source/base/base_string.c | 30 ------------------------------ 1 file changed, 30 deletions(-) (limited to 'source/base/base_string.c') diff --git a/source/base/base_string.c b/source/base/base_string.c index 986fde5..e69de29 100644 --- a/source/base/base_string.c +++ b/source/base/base_string.c @@ -1,30 +0,0 @@ -internal b32 -is_alpha(u8 point) -{ - return ((point >= 'a' && point <= 'z') || (point >= 'A' && point <= 'Z') || (point == '_')); -} - -internal b32 -is_digit(u8 point) -{ - return (point >= '0' && point <= '9'); -} - -internal b32 -is_alpha_num(u8 point) -{ - return (is_alpha(point) || is_digit(point)); -} - -internal b32 is_whitespace(u8 point) -{ - return (point == '\n' || point == '\r' || point == ' ' || point == '\t'); -} - -internal b32 -is_slash(u8 point) -{ - return (point == '/' || point == '\\'); -} - - -- cgit v1.3