Lines Matching defs:String
161 * string functions.
168 * PARAMETERS: SrcString - The source string to convert
172 * DESCRIPTION: Convert a string to lowercase
180 char *String;
191 /* Walk entire string, lowercasing the letters */
193 for (String = SrcString; *String; String++)
195 *String = (char) tolower ((int) *String);
204 * PARAMETERS: SrcString - The source string to convert
208 * DESCRIPTION: Convert a string to uppercase
216 char *String;
227 /* Walk entire string, uppercasing the letters */
229 for (String = SrcString; *String; String++)
231 *String = (char) toupper ((int) *String);
240 * PARAMETERS: String1 - first string to compare
241 * String2 - second string to compare
243 * RETURN: int that signifies string relationship. Zero means strings
246 * DESCRIPTION: Case-insensitive string compare. Implementation of the
279 * PARAMETERS: Adds a "DestSize" parameter to each of the standard string
284 * DESCRIPTION: Safe versions of standard Clib string functions. Ensure that
285 * the result of the operation will not overflow the output string
354 /* Always terminate destination string */