tomo/stdlib
2024-11-05 15:18:32 -05:00
..
arrays.c Add RNGs to the language 2024-11-03 22:37:48 -05:00
arrays.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
bools.c Add RNGs to the language 2024-11-03 22:37:48 -05:00
bools.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
bytes.c Deprecate bit-width integer/num literals in favor of using type 2024-11-05 15:18:32 -05:00
bytes.h Add some missing functionality for Bytes 2024-11-04 01:12:37 -05:00
c_strings.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
c_strings.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
chacha.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
channels.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
channels.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
datatypes.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
datetime.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
datetime.h Update DateTime API to have separate methods for getting each component 2024-10-27 18:41:00 -04:00
files.c Fix issue with non-ID chars in filenames 2024-10-10 01:09:17 -04:00
files.h Fix issue with non-ID chars in filenames 2024-10-10 01:09:17 -04:00
functiontype.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
functiontype.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
integers.c Deprecate bit-width integer/num literals in favor of using type 2024-11-05 15:18:32 -05:00
integers.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
memory.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
memory.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
metamethods.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
metamethods.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
nums.c Deprecate bit-width integer/num literals in favor of using type 2024-11-05 15:18:32 -05:00
nums.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
optionals.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
optionals.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
paths.c Fix for blocking reads 2024-11-04 01:37:51 -05:00
paths.h Update Path:read_bytes() API to take a byte count 2024-11-03 16:58:12 -05:00
patterns.c Make Text:find() return an optional int 2024-11-02 13:51:58 -04:00
patterns.h Update header 2024-11-02 13:53:22 -04:00
pointers.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
pointers.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
ranges.c Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
ranges.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
README.md Add README for navigating stdlib 2024-09-18 01:20:14 -04:00
rng.c Minor code cleanup 2024-11-04 13:06:11 -05:00
rng.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
shell.c Move unistr header out of tomo header 2024-10-25 14:05:07 -04:00
shell.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
siphash-internals.h Fix header inline functions to use extern inline and some GCC magic 2024-10-30 13:59:15 -04:00
siphash.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
siphash.h Fix up some compiler flags around floating point numbers so they work 2024-10-03 14:19:23 -04:00
stdlib.c Add RNGs to the language 2024-11-03 22:37:48 -05:00
stdlib.h Remove unused args for end_test() 2024-10-31 01:30:12 -04:00
tables.c Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
tables.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
text.c Update text API to use optional returns when applicable 2024-11-04 01:17:47 -05:00
text.h Update text API to use optional returns when applicable 2024-11-04 01:17:47 -05:00
threads.c Add RNGs to the language 2024-11-03 22:37:48 -05:00
threads.h Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code 2024-09-30 14:39:30 -04:00
tomo.h Add RNGs to the language 2024-11-03 22:37:48 -05:00
types.c Simplify enum/struct codegen by using reusable general-purpose 2024-10-08 13:35:18 -04:00
types.h Fix up some GCC compiler flag options for LTO and inlining 2024-10-29 23:14:31 -04:00
util.c Move USE_COLOR into stdlib 2024-09-18 01:08:36 -04:00
util.h Fix header inline functions to use extern inline and some GCC magic 2024-10-30 13:59:15 -04:00

Tomo Standard Library

This directory contains all of the standard library functionality that is built into each Tomo program. It has all the logic for core datastructures as well as some common functionality.

Core Functions

Core Data Types