diff options
| author | Kyle Gunger <kgunger12@gmail.com> | 2024-04-24 14:40:43 -0400 |
|---|---|---|
| committer | Kyle Gunger <kgunger12@gmail.com> | 2024-04-24 14:40:43 -0400 |
| commit | 15eded2fdb4b039a1bcdc4d3094f708e6529c355 (patch) | |
| tree | e1687782638b1ae4bf2ca099b9e220738aa075fc /tnslc/utils | |
| parent | 4a15d64a65cca37a708af4f954415b5c205a9655 (diff) | |
Module init and end
Diffstat (limited to 'tnslc/utils')
| -rw-r--r-- | tnslc/utils/algo.tnsl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tnslc/utils/algo.tnsl b/tnslc/utils/algo.tnsl index 1668e15..8426f9d 100644 --- a/tnslc/utils/algo.tnsl +++ b/tnslc/utils/algo.tnsl @@ -194,3 +194,9 @@ return str ;/ +/; strclone(~uint8 cstr) [~uint8] + Vector out + out.from_cstr(cstr) + return out.as_cstr() +;/ + |