summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-04-15tmpHEADmasterLinnnus
2025-04-15fix(cli): Do proper line allocation for REPLLinnnus
2025-04-15refactor(core): Rename sand_{new => get}_std_allocator, void parametersLinnnus
This patch just renames the function for getting a std allocator. This matches the terminology used for the page allocator. There aren't actually any (non-global) resources associated with these allocators so the "get" name makes more sense. It also fixes some (potential) issues with empty parameter specifications in sand_get_std_allocator() and sand_get_page_allocator(). Apparently () is not the same as (void)...
2025-04-15feat(core,cli): Add diagnostic handler to SandConfigLinnnus
2025-04-15refactor(core): Move SandConfig into own header fileLinnnus
2025-04-15fix(core): Tokenizer doesn't assume input is NUL-terminatedLinnnus
2025-04-15feat(cli): More CLI stuff, idkLinnnus
2025-04-15feat(core): Add tokenizerLinnnus
2025-04-08feat: Initial commitLinnnus
At this point we have some allocation routines but no work on the actual language has been done.