MCPcopy Create free account
hub / github.com/Genivia/ugrep / lowercase

Method lowercase

include/reflex/pattern.h:1416–1419  ·  view source on GitHub ↗

convert to lower case if c is a letter a-z, A-Z.

Source from the content-addressed store, hash-verified

1414 }
1415 /// convert to lower case if c is a letter a-z, A-Z.
1416 static inline Char lowercase(Char c)
1417 {
1418 return static_cast<unsigned char>(c | 0x20);
1419 }
1420 /// convert to upper case if c is a letter a-z, A-Z.
1421 static inline Char uppercase(Char c)
1422 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected