diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-26 23:26:52 +0100 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2015-02-26 23:29:45 +0100 |
commit | 10240c716aa7eea6aada39e77a7a3cd290a21663 (patch) | |
tree | 88cf815e4d002d0765ad03f97c64faa1acc317b2 /src/utils.c | |
parent | f9c308765f7aa16d553c72551fd830b7e29c9aec (diff) | |
download | tdv-10240c716aa7eea6aada39e77a7a3cd290a21663.tar.gz tdv-10240c716aa7eea6aada39e77a7a3cd290a21663.tar.xz tdv-10240c716aa7eea6aada39e77a7a3cd290a21663.zip |
Formatting
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) { |