diff options
Diffstat (limited to 'src/utils.c')
-rw-r--r-- | src/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils.c b/src/utils.c index 7af0c2f..02485d2 100644 --- a/src/utils.c +++ b/src/utils.c @@ -33,7 +33,7 @@ #include "utils.h" -/** Read the whole stream into a byte array. */ +/// Read the whole stream into a byte array. gboolean stream_read_all (GByteArray *ba, GInputStream *is, GError **error) { @@ -50,7 +50,7 @@ stream_read_all (GByteArray *ba, GInputStream *is, GError **error) return FALSE; } -/** Read a null-terminated string from a data input stream. */ +/// Read a null-terminated string from a data input stream. gchar * stream_read_string (GDataInputStream *dis, GError **error) { |