tomo/stdlib/tomo.h

36 lines
717 B
C
Raw Normal View History

2024-02-04 15:04:41 -08:00
#pragma once
2024-03-18 09:57:49 -07:00
// All of the different builtin modules can be included by including this one
// import
2024-02-04 15:04:41 -08:00
#include <stdbool.h>
#include <stdint.h>
#include <sys/param.h>
2024-02-04 15:04:41 -08:00
#include "arrays.h"
#include "bools.h"
2024-09-15 12:33:47 -07:00
#include "bytes.h"
#include "c_strings.h"
2024-03-09 21:03:21 -08:00
#include "datatypes.h"
2024-11-29 09:55:14 -08:00
#include "enums.h"
2024-09-13 16:59:28 -07:00
#include "functiontype.h"
2024-03-09 21:03:21 -08:00
#include "integers.h"
#include "memory.h"
2024-09-13 16:59:28 -07:00
#include "metamethods.h"
2024-11-17 11:49:03 -08:00
#include "moments.h"
#include "mutexeddata.h"
2024-03-09 21:03:21 -08:00
#include "nums.h"
2024-09-10 22:31:31 -07:00
#include "optionals.h"
#include "paths.h"
#include "patterns.h"
#include "pointers.h"
2024-11-03 19:37:48 -08:00
#include "rng.h"
#include "siphash.h"
2024-11-29 09:55:14 -08:00
#include "structs.h"
#include "tables.h"
2024-03-09 21:03:21 -08:00
#include "text.h"
#include "threads.h"
2024-03-09 21:03:21 -08:00
#include "types.h"
2024-02-04 18:13:50 -08:00
2024-02-10 12:23:06 -08:00
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0