str_ucase()

Purpose

Converts a string to upper case

Old name

#define _ucase str_ucase

Syntax

char* str_ucase(s)

Parameters

char* s

Null-terminated string to convert

Description

The str_ucase function converts the null-terminated string specified by the parameter s to upper case. The converted string is also returned by this function. Only characters in the range 'a' to 'z' are affected.

Return values

Returns pointer to converted string

See also

str_lcase()