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 <gc.h>
|
|
|
|
#include <gc/cord.h>
|
2024-08-12 22:30:25 -07:00
|
|
|
#include <gmp.h>
|
2024-02-04 15:04:41 -08:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2024-07-20 14:20:50 -07:00
|
|
|
#include <sys/param.h>
|
2024-02-04 15:04:41 -08:00
|
|
|
|
2024-03-09 21:03:21 -08:00
|
|
|
#include "array.h"
|
|
|
|
#include "bool.h"
|
2024-05-18 11:38:41 -07:00
|
|
|
#include "c_string.h"
|
2024-08-11 11:47:34 -07:00
|
|
|
#include "channel.h"
|
2024-03-09 21:03:21 -08:00
|
|
|
#include "datatypes.h"
|
|
|
|
#include "functions.h"
|
|
|
|
#include "integers.h"
|
|
|
|
#include "macros.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "nums.h"
|
2024-09-10 22:31:31 -07:00
|
|
|
#include "optionals.h"
|
2024-09-08 21:22:12 -07:00
|
|
|
#include "path.h"
|
2024-09-13 10:34:04 -07:00
|
|
|
#include "pattern.h"
|
2024-03-09 21:03:21 -08:00
|
|
|
#include "pointer.h"
|
2024-08-05 11:40:28 -07:00
|
|
|
#include "range.h"
|
2024-09-06 08:37:33 -07:00
|
|
|
#include "shell.h"
|
2024-09-05 13:23:05 -07:00
|
|
|
#include "siphash.h"
|
2024-03-09 21:03:21 -08:00
|
|
|
#include "table.h"
|
|
|
|
#include "text.h"
|
2024-08-11 11:47:34 -07:00
|
|
|
#include "thread.h"
|
2024-03-09 21:03:21 -08:00
|
|
|
#include "types.h"
|
2024-02-04 18:13:50 -08:00
|
|
|
|
2024-09-05 13:23:05 -07:00
|
|
|
// This value will be randomized on startup in tomo_init():
|
|
|
|
extern uint64_t TOMO_HASH_KEY[2];
|
|
|
|
|
2024-02-10 12:23:06 -08:00
|
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|