MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / to_upcase

Function to_upcase

src/gpre/sql.cpp:6750–6759  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6748//
6749
6750static void to_upcase(const TEXT* p, TEXT* q, int target_size)
6751{
6752 UCHAR c;
6753 USHORT l = 0;
6754
6755 while ((c = *p++) && (++l < target_size)) {
6756 *q++ = UPPER(c);
6757 }
6758 *q = 0;
6759}
6760
6761
6762//____________________________________________________________

Callers 2

act_grant_revokeFunction · 0.85
SQL_resolve_identifierFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected