gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r37086 - branches/mhd-0.9.50/src/microhttpd


From: gnunet
Subject: [GNUnet-SVN] r37086 - branches/mhd-0.9.50/src/microhttpd
Date: Fri, 29 Apr 2016 23:14:05 +0200

Author: Karlson2k
Date: 2016-04-29 23:14:05 +0200 (Fri, 29 Apr 2016)
New Revision: 37086

Modified:
   branches/mhd-0.9.50/src/microhttpd/mhd_str.c
Log:
mhd_str.c: cosmetics, corrected comments

Modified: branches/mhd-0.9.50/src/microhttpd/mhd_str.c
===================================================================
--- branches/mhd-0.9.50/src/microhttpd/mhd_str.c        2016-04-29 21:00:36 UTC 
(rev 37085)
+++ branches/mhd-0.9.50/src/microhttpd/mhd_str.c        2016-04-29 21:14:05 UTC 
(rev 37086)
@@ -37,7 +37,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
@@ -97,7 +97,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
@@ -106,12 +106,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
@@ -154,7 +154,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,
@@ -167,7 +167,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)))
@@ -177,7 +177,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]