Convert the characters in [`begin`, end) to uppercase in place.]

Synopsis

Declared in <bslfmt_formattercharutil.h>

static
void
toUpper(
    char* begin,
    char const* end);

Description

Convert all characters in the sequence starting at the specified begin address and ending immediately before the specified end address to uppercase. Note that conversion happens in‐place. The behavior is undefined unless begin <= end.

Parameters

Name

Description

begin

address of the first character to convert

end

address one past the last character to convert

Created with MrDocs