aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-03-16 21:00:14 +0000
committerChristian Grothoff <christian@grothoff.org>2012-03-16 21:00:14 +0000
commitfbf9569f8b5f0b90ae95e2d9be42fd3b4f4701df (patch)
tree1aa87ebc2ec113e3bd38b2547a66b123ffe62903 /src
parentdc2e456d8e2689e212366260ffa2f09f86e9420b (diff)
downloadgnunet-fbf9569f8b5f0b90ae95e2d9be42fd3b4f4701df.tar.gz
gnunet-fbf9569f8b5f0b90ae95e2d9be42fd3b4f4701df.zip
-doxygen
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_protocols.h1
-rw-r--r--src/include/gnunet_strings_lib.h2
-rw-r--r--src/util/strings.c12
3 files changed, 7 insertions, 8 deletions
diff --git a/src/include/gnunet_protocols.h b/src/include/gnunet_protocols.h
index 110489491..06fd777e6 100644
--- a/src/include/gnunet_protocols.h
+++ b/src/include/gnunet_protocols.h
@@ -136,7 +136,6 @@ extern "C"
136/** 136/**
137 * Control messages between the gnunet-wlan-helper and the daemon 137 * Control messages between the gnunet-wlan-helper and the daemon
138 */ 138 */
139
140#define GNUNET_MESSAGE_TYPE_WLAN_HELPER_CONTROL 41 139#define GNUNET_MESSAGE_TYPE_WLAN_HELPER_CONTROL 41
141 140
142/** 141/**
diff --git a/src/include/gnunet_strings_lib.h b/src/include/gnunet_strings_lib.h
index 1772b03bf..026d2c0a4 100644
--- a/src/include/gnunet_strings_lib.h
+++ b/src/include/gnunet_strings_lib.h
@@ -297,7 +297,7 @@ GNUNET_STRINGS_parse_uri (const char *path, char **scheme_part,
297 * @param r_uri a pointer to a char * that is set to a pointer to URI scheme. 297 * @param r_uri a pointer to a char * that is set to a pointer to URI scheme.
298 * The string is allocated by the function, and should be freed with 298 * The string is allocated by the function, and should be freed with
299 * GNUNET_free (). Can be NULL. 299 * GNUNET_free (). Can be NULL.
300 * @return GNUNET_YES if 'filaname' is absolute, GNUNET_NO otherwise. 300 * @return GNUNET_YES if 'filename' is absolute, GNUNET_NO otherwise.
301 */ 301 */
302int 302int
303GNUNET_STRINGS_path_is_absolute (const char *filename, 303GNUNET_STRINGS_path_is_absolute (const char *filename,
diff --git a/src/util/strings.c b/src/util/strings.c
index 37500b45b..3aa89fdbd 100644
--- a/src/util/strings.c
+++ b/src/util/strings.c
@@ -838,18 +838,18 @@ GNUNET_STRINGS_parse_uri (const char *path, char **scheme_part,
838 838
839 839
840/** 840/**
841 * Check whether @filename is absolute or not, and if it's an URI 841 * Check whether 'filename' is absolute or not, and if it's an URI
842 * 842 *
843 * @param filename filename to check 843 * @param filename filename to check
844 * @param can_be_uri GNUNET_YES to check for being URI, GNUNET_NO - to 844 * @param can_be_uri GNUNET_YES to check for being URI, GNUNET_NO - to
845 * assume it's not URI 845 * assume it's not URI
846 * @param r_is_uri a pointer to an int that is set to GNUNET_YES if @filename 846 * @param r_is_uri a pointer to an int that is set to GNUNET_YES if 'filename'
847 * is URI and to GNUNET_NO otherwise. Can be NULL. If @can_be_uri is 847 * is URI and to GNUNET_NO otherwise. Can be NULL. If 'can_be_uri' is
848 * not GNUNET_YES, *r_is_uri is set to GNUNET_NO. 848 * not GNUNET_YES, *r_is_uri is set to GNUNET_NO.
849 * @param r_uri a pointer to a char * that is set to a pointer to URI scheme. 849 * @param r_uri a pointer to a char * that is set to a pointer to URI scheme.
850 * The string is allocated by the function, and should be freed with 850 * The string is allocated by the function, and should be freed with
851 * GNUNET_free (). Can be NULL. 851 * GNUNET_free (). Can be NULL.
852 * @return GNUNET_YES if @filaneme is absolute, GNUNET_NO otherwise. 852 * @return GNUNET_YES if 'filename' is absolute, GNUNET_NO otherwise.
853 */ 853 */
854int 854int
855GNUNET_STRINGS_path_is_absolute (const char *filename, int can_be_uri, 855GNUNET_STRINGS_path_is_absolute (const char *filename, int can_be_uri,
@@ -912,11 +912,11 @@ GNUNET_STRINGS_path_is_absolute (const char *filename, int can_be_uri,
912#endif 912#endif
913 913
914/** 914/**
915 * Perform @checks on @filename 915 * Perform 'checks' on 'filename'
916 * 916 *
917 * @param filename file to check 917 * @param filename file to check
918 * @param checks checks to perform 918 * @param checks checks to perform
919 * @return GNUNET_YES if all @checks pass, GNUNET_NO if at least one of them 919 * @return GNUNET_YES if all checks pass, GNUNET_NO if at least one of them
920 * fails, GNUNET_SYSERR when a check can't be performed 920 * fails, GNUNET_SYSERR when a check can't be performed
921 */ 921 */
922int 922int