aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_strings_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-30 18:15:48 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-30 18:15:48 +0000
commitafa714da4ed5de15331a694b25a228e4e4426c18 (patch)
tree35669eea3b84448122138b019f4268b0959f665e /src/include/gnunet_strings_lib.h
parentdf64ed90529f6370a15bdb548f16b1948420c828 (diff)
downloadgnunet-afa714da4ed5de15331a694b25a228e4e4426c18.tar.gz
gnunet-afa714da4ed5de15331a694b25a228e4e4426c18.zip
-simplify utf8_tolower/upper APIs
Diffstat (limited to 'src/include/gnunet_strings_lib.h')
-rw-r--r--src/include/gnunet_strings_lib.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/gnunet_strings_lib.h b/src/include/gnunet_strings_lib.h
index 8bb8cfb06..686be93ad 100644
--- a/src/include/gnunet_strings_lib.h
+++ b/src/include/gnunet_strings_lib.h
@@ -153,27 +153,27 @@ GNUNET_STRINGS_from_utf8 (const char *input,
153 153
154 154
155/** 155/**
156 * Convert the utf-8 input string to lowercase 156 * Convert the utf-8 input string to lower case.
157 * Output needs to be allocated appropriately 157 * Output needs to be allocated appropriately.
158 * 158 *
159 * @param input input string 159 * @param input input string
160 * @param output output buffer 160 * @param output output buffer
161 */ 161 */
162void 162void
163GNUNET_STRINGS_utf8_tolower (const char* input, 163GNUNET_STRINGS_utf8_tolower (const char *input,
164 char** output); 164 char *output);
165 165
166 166
167/** 167/**
168 * Convert the utf-8 input string to lowercase 168 * Convert the utf-8 input string to upper case.
169 * Output needs to be allocated appropriately 169 * Output needs to be allocated appropriately.
170 * 170 *
171 * @param input input string 171 * @param input input string
172 * @param output output buffer 172 * @param output output buffer
173 */ 173 */
174void 174void
175GNUNET_STRINGS_utf8_toupper (const char* input, 175GNUNET_STRINGS_utf8_toupper (const char *input,
176 char** output); 176 char *output);
177 177
178 178
179/** 179/**