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

Function add_string

src/common/stuff.h:51–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51inline void add_string(UCHAR* &blr, const TEXT* string)
52{
53 add_byte(blr, static_cast<int>(strlen(string)));
54 while (*string)
55 add_byte(blr, *string++);
56}
57
58#endif // COMMON_STUFF_H

Callers

nothing calls this directly

Calls 1

add_byteFunction · 0.85

Tested by

no test coverage detected