diff options
Diffstat (limited to 'src/runtime/c/gu/string.h')
| -rw-r--r-- | src/runtime/c/gu/string.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/runtime/c/gu/string.h b/src/runtime/c/gu/string.h index 310c725b5..a24fe3068 100644 --- a/src/runtime/c/gu/string.h +++ b/src/runtime/c/gu/string.h @@ -34,6 +34,12 @@ gu_string_copy(GuString string, GuPool* pool); void gu_string_write(GuString string, GuOut* out, GuExn* err); +GuString +gu_string_read(size_t len, GuPool* pool, GuIn* in, GuExn* err); + +GuString +gu_string_read_latin1(size_t len, GuPool* pool, GuIn* in, GuExn* err); + GuIn* gu_string_in(GuString string, GuPool* pool); |
