addded String::contains defs

This commit is contained in:
2024-11-29 14:50:54 -05:00
parent 81a0376c99
commit e3c2a577ba
3 changed files with 40 additions and 2 deletions

View File

@ -5,7 +5,7 @@
#pragma region Memory
#define kilobytes( x ) ( ( x ) * ( s64 )( 1024 ) )
#define kilobytes( x ) ( ( x ) * ( s64 )( 1024 ) )
#define megabytes( x ) ( kilobytes( x ) * ( s64 )( 1024 ) )
#define gigabytes( x ) ( megabytes( x ) * ( s64 )( 1024 ) )
#define terabytes( x ) ( gigabytes( x ) * ( s64 )( 1024 ) )