aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_bio_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-06 09:35:14 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-06 09:35:14 +0000
commit99ba3c2b1294b890671d0d7d6e4319be70bee5a0 (patch)
tree2e9b1339869d5f115b80246b63af6c0604023e75 /src/include/gnunet_bio_lib.h
parentaee28f4afd42710aba0c37d8ec86572aef092044 (diff)
downloadgnunet-99ba3c2b1294b890671d0d7d6e4319be70bee5a0.tar.gz
gnunet-99ba3c2b1294b890671d0d7d6e4319be70bee5a0.zip
-doxygen, coding conventions
Diffstat (limited to 'src/include/gnunet_bio_lib.h')
-rw-r--r--src/include/gnunet_bio_lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gnunet_bio_lib.h b/src/include/gnunet_bio_lib.h
index 8bb783c75..a9ac0c1cd 100644
--- a/src/include/gnunet_bio_lib.h
+++ b/src/include/gnunet_bio_lib.h
@@ -104,12 +104,12 @@ GNUNET_BIO_read_fn (struct GNUNET_BIO_ReadHandle *h,
104 * @param what describes what is being read (for error message creation) 104 * @param what describes what is being read (for error message creation)
105 * @param result the buffer to store a pointer to the (allocated) string to 105 * @param result the buffer to store a pointer to the (allocated) string to
106 * (note that *result could be set to NULL as well) 106 * (note that *result could be set to NULL as well)
107 * @param maxLen maximum allowed length for the string 107 * @param max_length maximum allowed length for the string
108 * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure 108 * @return #GNUNET_OK on success, #GNUNET_SYSERR on failure
109 */ 109 */
110int 110int
111GNUNET_BIO_read_string (struct GNUNET_BIO_ReadHandle *h, const char *what, 111GNUNET_BIO_read_string (struct GNUNET_BIO_ReadHandle *h, const char *what,
112 char **result, size_t maxLen); 112 char **result, size_t max_length);
113 113
114 114
115/** 115/**