SWUpdate library to be used with RPC.

Fork of SWUpdate by David Smart

Revision:
18:5f7667d63a27
Parent:
17:1d318666246c
Child:
19:169aab9047bd
--- a/SWUpdate.cpp	Sat Jul 05 22:27:09 2014 +0000
+++ b/SWUpdate.cpp	Sat Oct 11 17:27:46 2014 +0000
@@ -58,8 +58,8 @@
 ///
 /// @note this only works for characters in the range 'A' - 'Z'.
 ///
-/// @param a is the character to convert
-/// @returns the lower case equivalent to the supplied character.
+/// a is the character to convert
+/// returns the lower case equivalent to the supplied character.
 ///
 static char mytolower(char a)
 {
@@ -74,12 +74,12 @@
 /// Some have strnicmp, others _strnicmp, and others have C++ methods, which
 /// is outside the scope of this C-portable set of functions.
 ///
-/// @param l is a pointer to the string on the left
-/// @param r is a pointer to the string on the right
-/// @param n is the number of characters to compare
-/// @returns -1 if l < r
-/// @returns 0 if l == r
-/// @returns +1 if l > r
+/// l is a pointer to the string on the left
+/// r is a pointer to the string on the right
+/// n is the number of characters to compare
+/// returns -1 if l < r
+/// returns 0 if l == r
+/// returns +1 if l > r
 ///
 static int mystrnicmp(const char *l, const char *r, size_t n)
 {