aboutsummaryrefslogtreecommitdiff
path: root/environment.c
AgeCommit message (Expand)Author
2024-09-18Remove dead codeBruce Hill
2024-09-17Perform topological ordering when compiling typedefs so users don't needBruce Hill
2024-09-16Update Shell API to have byte-based mode and by_line() just like filesBruce Hill
2024-09-16Have Text:matches() return an optional array of matchesBruce Hill
2024-09-16Add some basic pattern matching/suffix code for pathsBruce Hill
2024-09-15Add optional:or_exit(...)Bruce Hill
2024-09-15Update path reading APIs to use optional values instead of erroringBruce Hill
2024-09-15Add a Byte datatypeBruce Hill
2024-09-14Fix Path:by_line() iteratorBruce Hill
2024-09-13Rename builtins/ -> stdlib/Bruce Hill
2024-09-13Rename builtins to use plurals when appropriateBruce Hill
2024-09-13Code cleanupBruce Hill
2024-09-13Move cord helper functions into their own fileBruce Hill
2024-09-12Fix up CString:as_text()Bruce Hill
2024-09-12Add sleep()Bruce Hill
2024-09-12Make sure global types don't get library's prefixBruce Hill
2024-09-12Automatically interpolate ints for pattern/shell/pathBruce Hill
2024-09-11Use optionals for iteratorsBruce Hill
2024-09-11Change *:from_text() methods to return optional values and set up CLIBruce Hill
2024-09-11Add optional typesBruce Hill
2024-09-09Add (/path):by_line()Bruce Hill
2024-09-09Improve toolBruce Hill
2024-09-09Fix up some stuff with path escapingBruce Hill
2024-09-09Add Path.from_unsafe_text() etcBruce Hill
2024-09-09Fix up ini exampleBruce Hill
2024-09-09Restore path interpolationBruce Hill
2024-09-09Add Text.starts_with() and Text.ends_with()Bruce Hill
2024-09-09Fix some logic for extensions and base namesBruce Hill
2024-09-09Add Path.base_name(), Path.parent(), Path.extension()Bruce Hill
2024-09-09Add mktemp functionalityBruce Hill
2024-09-09For parsing paths, use nested parens: (./foo), also add some methodsBruce Hill
2024-09-09More methodsBruce Hill
2024-09-09More path stuff including some methodsBruce Hill
2024-09-09Initial working versionBruce Hill
2024-09-08Bugfix for default arguments not supporting enclosing typesBruce Hill
2024-09-08Fix nearly every GCC warning and add __attribute__((pure/const)) whereBruce Hill
2024-09-07Add exit() functionBruce Hill
2024-09-06Fix some C string and path resolving issuesBruce Hill
2024-09-06Print stack trace if $TOMO_STACKTRACE is setBruce Hill
2024-09-06Add Shell dsl typeBruce Hill
2024-09-06Add Text.trim()Bruce Hill
2024-09-05Replace $Type with Type$info for builtin TypeInfosBruce Hill
2024-09-05Rename table_t -> Table_tBruce Hill
2024-09-05Rename array_t -> Array_tBruce Hill
2024-09-04Add Text:repeat()Bruce Hill
2024-09-04Add Text.map(pat, fn)Bruce Hill
2024-09-04Unify parsing code to correctly handle parsing integers and numbers withBruce Hill
2024-09-04Add ask() as a way to get user inputBruce Hill
2024-09-04Improve codegen by making test() even more conciseBruce Hill
2024-09-04Add Text:matches() for convenience and performanceBruce Hill