gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r37026 - libmicrohttpd/src/microhttpd


From: gnunet
Subject: [GNUnet-SVN] r37026 - libmicrohttpd/src/microhttpd
Date: Tue, 12 Apr 2016 13:50:06 +0200

Author: Karlson2k
Date: 2016-04-12 13:50:06 +0200 (Tue, 12 Apr 2016)
New Revision: 37026

Modified:
   libmicrohttpd/src/microhttpd/mhd_str.c
Log:
mhd_str.c: cosmetics, corrected comments

Modified: libmicrohttpd/src/microhttpd/mhd_str.c
===================================================================
--- libmicrohttpd/src/microhttpd/mhd_str.c      2016-04-12 11:01:36 UTC (rev 
37025)
+++ libmicrohttpd/src/microhttpd/mhd_str.c      2016-04-12 11:50:06 UTC (rev 
37026)
@@ -39,7 +39,7 @@
  */
 
 #ifdef INLINE_FUNC
- /**
+/**
  * Check whether character is lower case letter in US-ASCII
  * @param c character to check
  * @return non-zero if character is lower case letter, zero otherwise
@@ -99,7 +99,7 @@
  * If character is upper case letter in US-ASCII than it's converted to lower
  * case analog. If character is NOT upper case letter than it's returned
  * unmodified.
- * @param c character to check
+ * @param c character to convert
  * @return converted to lower case character
  */
 _MHD_inline char
@@ -108,12 +108,12 @@
   return isasciiupper (c) ? (c - 'A' + 'a') : c;
 }
 
- /**
+/**
  * Convert US-ASCII character to upper case.
  * If character is lower case letter in US-ASCII than it's converted to upper
  * case analog. If character is NOT lower case letter than it's returned
  * unmodified.
- * @param c character to check
+ * @param c character to convert
  * @return converted to upper case character
  */
 _MHD_inline char
@@ -156,7 +156,7 @@
  */
 #define isasciidigit(c) (((char)(c)) >= '0' && ((char)(c)) <= '9')
 
- /**
+/**
  * Check whether character is decimal digit or letter in US-ASCII
  * @param c character to check
  * @return boolean true if character is decimal digit or letter,
@@ -169,7 +169,7 @@
  * If character is upper case letter in US-ASCII than it's converted to lower
  * case analog. If character is NOT upper case letter than it's returned
  * unmodified.
- * @param c character to check
+ * @param c character to convert
  * @return converted to lower case character
  */
 #define toasciilower(c) ((isasciiupper(c)) ? (((char)(c)) - 'A' + 'a') : 
((char)(c)))
@@ -179,7 +179,7 @@
  * If character is lower case letter in US-ASCII than it's converted to upper
  * case analog. If character is NOT lower case letter than it's returned
  * unmodified.
- * @param c character to check
+ * @param c character to convert
  * @return converted to upper case character
  */
 #define toasciiupper(c) ((isasciilower(c)) ? (((char)(c)) - 'a' + 'A') : 
((char)(c)))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]