Commit e33ac1e3 authored by peter@mysql.com's avatar peter@mysql.com

Some comments added to function

parent 2440182b
......@@ -28,7 +28,21 @@
#include <m_string.h>
#endif
/* string to uppercase */
/*
Upcase string
SYNOPSIS
str IN/OUT String to upcase
RETURN VALUE
none
DESCRIPTION
Function changes input parameter so all chars it consist from
are replaced with matching one in upper case.
String should be writable with exception read-only empty string
constant is handled correctly.
*/
void caseup_str(my_string str)
{
......@@ -52,7 +66,22 @@ void caseup_str(my_string str)
}
} /* caseup_str */
/* string to lowercase */
/*
Downcase string
SYNOPSIS
str IN/OUT String to downcase
RETURN VALUE
none
DESCRIPTION
Function changes input parameter so all chars it consist from
are replaced with matching one in lower case.
String should be writable with exception read-only empty string
constant is handled correctly.
*/
void casedn_str(my_string str)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment