diff options
-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; |