- Function
Make a string upper case.
- Header
- Declaration
char* __fastcall__ strupper (char* s);- Description
The
strupperfunction will apply thetoupperfunction to each character of a string. The function will always returns.- Limits
- The function is only available as fastcall function, so it may only be used in presence of a prototype.
- The function prototype is unavailable when compiling in strict ANSI mode.
- An alias name for this function is
strupr.- Availability
cc65
- See also
- Example
None.