diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-12-30 18:31:53 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2021-12-30 18:31:53 +0100 |
commit | ec14f2955222932bb68704cc4590ba1dbd165cd9 (patch) | |
tree | 7bc4e580170231af32305f65875bd3cb2d9d541c /std/str.c | |
parent | 4c52777ca9e52edd0bff76168d886de9757ea457 (diff) | |
download | uwu-lang-ec14f2955222932bb68704cc4590ba1dbd165cd9.tar.xz |
Allow passing arguments to program, refactor directory structure
Diffstat (limited to 'std/str.c')
-rw-r--r-- | std/str.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ #include <string.h> #include <stdlib.h> -#include "../api/vm.h" -#include "../api/str.h" -#include "../api/util.h" +#include "api/vm.h" +#include "api/str.h" +#include "api/util.h" UwUVMValue uwu_cat(UwUVMArgs *args) { |