Str.asciiStrup

Converts all lower case ASCII letters to upper case ASCII letters.

struct Str
static
string
asciiStrup
(
string str
,
ptrdiff_t len
)

Parameters

str string

a string

len ptrdiff_t

length of str in bytes, or -1 if str is nul-terminated

Return Value

Type: string

a newly allocated string, with all the lower case characters in str converted to upper case, with semantics that exactly match g_ascii_toupper(). (Note that this is unlike the old g_strup(), which modified the string in place.)