core: rename write_string functions to write_cstr

This commit is contained in:
2026-04-20 21:41:38 +01:00
parent 709d11331c
commit 5ab348fd30
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ FX_API fx_status fx_stream_read_all_bytes_s(
fx_stream *src, fx_stream *dest, fx_stream_buffer *buffer, size_t *nr_read);
FX_API fx_status fx_stream_write_char(fx_stream *stream, fx_wchar c);
FX_API fx_status fx_stream_write_string(
FX_API fx_status fx_stream_write_cstr(
fx_stream *stream, const char *s, size_t *nr_written);
FX_API fx_status fx_stream_write_bytes(