stStrUpr Function
Declaration:
PSTR stStrUpr(
  PSTR s
);
Parameters:
s

Address of the string.

Return value:

Address of the string with converted characters.

Description:

This function converts lowercase letters in the specified string to uppercase letters.

If functions for basic string operations are inactive in the alternative C library (by setting ST_USE_STRING_CLIB to 1), a macro named stStrUpr will be created that calls the strupr function from the standard C library.

Version:1.0
Header file:ST_CLIB.h (include ST_API.h)
See also: PSTR, ST_USE_STRING_CLIB
SpaceShadow documentation