diff options
author | WormHeamer | 2025-03-10 15:19:44 -0400 |
---|---|---|
committer | WormHeamer | 2025-03-10 15:19:44 -0400 |
commit | 9ab6a07efd2b89b01020470c17b3b9341f391faf (patch) | |
tree | a7efa929f42438fe7110d3af1ecd4e049ddb80c5 /impl.c | |
parent | ec6c4cdbc7208b3e0d72278615205aee5068350a (diff) |
move *_IMPL to a separate compilation unit
Diffstat (limited to 'impl.c')
-rw-r--r-- | impl.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/impl.c b/impl.c new file mode 100644 index 0000000..8226629 --- /dev/null +++ b/impl.c @@ -0,0 +1,7 @@ +#define STR_IMPL +#define ARENA_IMPL +#define ARGS_IMPL + +#include "str.h" +#include "arena.h" +#include "args.h" |