diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-21 21:48:53 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-21 21:48:53 -0400 |
| commit | 5ee185a4896e43c67b6d299becfa616da78fb9f4 (patch) | |
| tree | 183ceef2fd21230c89334d7d039255d1c86c5dca /src/stdlib/tomo.h | |
| parent | f4aaf7b73481248f6768302be688700a364a1af8 (diff) | |
Move stdlib into src/
Diffstat (limited to 'src/stdlib/tomo.h')
| -rw-r--r-- | src/stdlib/tomo.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/stdlib/tomo.h b/src/stdlib/tomo.h new file mode 100644 index 00000000..61dba404 --- /dev/null +++ b/src/stdlib/tomo.h @@ -0,0 +1,35 @@ +#pragma once + +// All of the different builtin modules can be included by including this one +// import + +#include <stdbool.h> +#include <stdint.h> +#include <sys/param.h> + +#include "arrays.h" +#include "bools.h" +#include "bytes.h" +#include "c_strings.h" +#include "datatypes.h" +#include "enums.h" +#include "functiontype.h" +#include "integers.h" +#include "memory.h" +#include "metamethods.h" +#include "moments.h" +#include "mutexeddata.h" +#include "nums.h" +#include "optionals.h" +#include "paths.h" +#include "patterns.h" +#include "pointers.h" +#include "rng.h" +#include "siphash.h" +#include "structs.h" +#include "tables.h" +#include "text.h" +#include "threads.h" +#include "types.h" + +// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
