MCPcopy Create free account
hub / github.com/bytedance/Fastbot_Android / CharToUpper

Function CharToUpper

native/thirdpart/flatbuffers/util.h:79–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77inline bool is_alnum(char c) { return is_alpha(c) || is_digit(c); }
78
79inline char CharToUpper(char c) {
80 return static_cast<char>(::toupper(static_cast<unsigned char>(c)));
81}
82
83inline char CharToLower(char c) {
84 return static_cast<char>(::tolower(static_cast<unsigned char>(c)));

Callers 2

MakeCamelFunction · 0.85
MakeScreamingCamelFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected