diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-02-25 17:31:17 +1100 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-02-25 17:31:17 +1100 |
commit | 109b6dd1881d90915e972f0d263a032bd262adb5 (patch) | |
tree | 721bf1709a8bda2814fb5dc0b3a56c762d1372df /src/std/str.h | |
parent | 64f23d9726c55d5c965f123ffc5b6ca47ec1f475 (diff) |
disclaimer about some string apis not being unicode aware
Diffstat (limited to 'src/std/str.h')
-rw-r--r-- | src/std/str.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/std/str.h b/src/std/str.h index 3d3cb41..f3ade5a 100644 --- a/src/std/str.h +++ b/src/std/str.h @@ -7,8 +7,9 @@ #include "defines.h" /** - * @brief Fat pointer representing a UTF8 (TODO) encoded string - * @note when using `printf` you must use %s.*s length, string + * @brief Fat pointer representing a UTF8 (TODO some APIs supporting utf8) encoded string + * @note when using `printf` you must use %s.*s length, string until our own modified + print routines are written. alternatively wrap in `cstr()` and pass to `%s`. */ typedef struct { u8 *buf; |