aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_bio_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-05-06 13:31:25 +0000
committerChristian Grothoff <christian@grothoff.org>2010-05-06 13:31:25 +0000
commit2a63cab46cc16975a04cfd37a59e3deea417cac3 (patch)
tree8165c991b8c803c875183c23b5f4b83f2d45f09a /src/include/gnunet_bio_lib.h
parentae7bfd97da823c4fb870dbe5c68231a4ab2a85d8 (diff)
downloadgnunet-2a63cab46cc16975a04cfd37a59e3deea417cac3.tar.gz
gnunet-2a63cab46cc16975a04cfd37a59e3deea417cac3.zip
dox
Diffstat (limited to 'src/include/gnunet_bio_lib.h')
-rw-r--r--src/include/gnunet_bio_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_bio_lib.h b/src/include/gnunet_bio_lib.h
index b11073765..15924f1ef 100644
--- a/src/include/gnunet_bio_lib.h
+++ b/src/include/gnunet_bio_lib.h
@@ -146,13 +146,13 @@ int GNUNET_BIO_read_meta_data (struct GNUNET_BIO_ReadHandle *h,
146 * Read an (u)int32_t. 146 * Read an (u)int32_t.
147 * 147 *
148 * @param h hande to open file 148 * @param h hande to open file
149 * @param what describes what is being read (for error message creation) 149 * @param file name of the source file
150 * @param line line number in the code 150 * @param line line number in the code
151 * @param i address of 32-bit integer to read 151 * @param i address of 32-bit integer to read
152 * @return GNUNET_OK on success, GNUNET_SYSERR on error 152 * @return GNUNET_OK on success, GNUNET_SYSERR on error
153 */ 153 */
154int GNUNET_BIO_read_int32__ (struct GNUNET_BIO_ReadHandle *h, 154int GNUNET_BIO_read_int32__ (struct GNUNET_BIO_ReadHandle *h,
155 const char *what, int line, 155 const char *file, int line,
156 int32_t *i); 156 int32_t *i);
157 157
158 158
@@ -169,13 +169,13 @@ int GNUNET_BIO_read_int32__ (struct GNUNET_BIO_ReadHandle *h,
169 * Read an (u)int64_t. 169 * Read an (u)int64_t.
170 * 170 *
171 * @param h hande to open file 171 * @param h hande to open file
172 * @param what describes what is being read (for error message creation) 172 * @param file name of the source file
173 * @param line line number in the code 173 * @param line line number in the code
174 * @param i address of 64-bit integer to read 174 * @param i address of 64-bit integer to read
175 * @return GNUNET_OK on success, GNUNET_SYSERR on error 175 * @return GNUNET_OK on success, GNUNET_SYSERR on error
176 */ 176 */
177int GNUNET_BIO_read_int64__ (struct GNUNET_BIO_ReadHandle *h, 177int GNUNET_BIO_read_int64__ (struct GNUNET_BIO_ReadHandle *h,
178 const char *what, int line, 178 const char *file, int line,
179 int64_t *i); 179 int64_t *i);
180 180
181 181