tomo/stdlib/tomo.h
Bruce Hill 0bba319126 Big overhaul:
- Clean up environment code using type strings instead of manually
  defining types
- Add Commands module
- Move Shell lang into an example module that uses Commands module
- Fix some bugs with chained library dependencies
2025-03-17 19:29:28 -04:00

36 lines
717 B
C

#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