Day 34 complete!!!

This commit is contained in:
2023-10-11 17:52:13 -04:00
parent 7958fabd00
commit a4f07c67d2
25 changed files with 670 additions and 564 deletions

View File

@ -15,16 +15,7 @@
#define rcast( type, value ) reinterpret_cast< type >( value )
#define scast( type, value ) static_cast< type >( value )
#define do_once() \
do \
{ \
local_persist \
bool done = false; \
if ( done ) \
return; \
done = true; \
} \
while(0)
#define do_once() for ( local_persist b32 once = true; once; once = false )
#define do_once_start \
do \