Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FirebirdSQL/firebird
/ add_cstring
Method
add_cstring
src/gpre/gpre.h:1222–1228 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1220
add_word(lg >> 16);
1221
}
1222
inline void add_cstring(const char* string)
1223
{
1224
add_byte(static_cast<int>(strlen(string)));
1225
UCHAR c;
1226
while ((c = *string++))
1227
add_byte(c);
1228
}
1229
1230
};
1231
Callers
2
CME_relation
Function · 0.80
cmp_plan
Function · 0.80
Calls
1
add_byte
Function · 0.85
Tested by
no test coverage detected