diff options
| author | nasr <nsrddyn@gmail.com> | 2026-04-17 17:49:10 +0200 |
|---|---|---|
| committer | nasr <nsrddyn@gmail.com> | 2026-04-17 17:50:28 +0200 |
| commit | 078e21a1feb811f9ef7797ce3ee5d2e8ffcccfce (patch) | |
| tree | c1121bed141fb536be6b21a6fc54ccd2b5ac7302 /source/base/base_include.h | |
| parent | 9d09d66a273f68fae7efb71504bf40c664b91983 (diff) | |
feature(main): during my work on other projects I improved the base library a bit.
this is a drag and drop of that in the project. the next steps exit out of implementing
lineair regression and attempting to calcualte what the value would be of a key in the btree...
Signed-off-by: nasr <nsrddyn@gmail.com>
feature(main): during my work on other projects I improved the base library a bit.
this is a drag and drop of that in the project. the next steps exit out
of implementing
lineair regression and attempting to calcualte what the value would be
of a key in the btree...
Signed-off-by: nasr <nsrddyn@gmail.com>
Diffstat (limited to 'source/base/base_include.h')
| -rwxr-xr-x | source/base/base_include.h | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/source/base/base_include.h b/source/base/base_include.h index c8eec41..a376f29 100755 --- a/source/base/base_include.h +++ b/source/base/base_include.h | |||
| @@ -9,26 +9,30 @@ | |||
| 9 | #include <stdint.h> | 9 | #include <stdint.h> |
| 10 | #include <stddef.h> | 10 | #include <stddef.h> |
| 11 | #include <string.h> | 11 | #include <string.h> |
| 12 | #include <math.h> | ||
| 12 | #include <unistd.h> | 13 | #include <unistd.h> |
| 14 | #include <time.h> | ||
| 15 | #include <stdarg.h> | ||
| 13 | 16 | ||
| 14 | #include "base.h" | 17 | #include "base.h" |
| 15 | #include "base_mem.h" | 18 | #include "base_mem.h" |
| 19 | |||
| 16 | #include "base_arena.h" | 20 | #include "base_arena.h" |
| 17 | #include "base_stack.h" | 21 | #include "base_stack.h" |
| 18 | #include "base_string.h" | ||
| 19 | |||
| 20 | #include "base_io.h" | ||
| 21 | #include "base_error.h" | ||
| 22 | #include "base_test.h" | ||
| 23 | |||
| 24 | #ifdef BASE_UNITY | ||
| 25 | 22 | ||
| 23 | #ifdef BASE_IMPLEMENTATION | ||
| 26 | #include "base_arena.c" | 24 | #include "base_arena.c" |
| 27 | #include "base_stack.c" | ||
| 28 | |||
| 29 | #endif | 25 | #endif |
| 30 | 26 | ||
| 27 | |||
| 28 | #include "base_string.h" | ||
| 29 | #include "base_string.c" | ||
| 30 | |||
| 31 | #include "base_os.h" | 31 | #include "base_os.h" |
| 32 | #include "base_error.h" | ||
| 33 | |||
| 34 | #include "base_rand.h" | ||
| 35 | |||
| 32 | 36 | ||
| 33 | 37 | ||
| 34 | #endif | 38 | #endif |
