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

Function nextCode

src/common/utils.cpp:1793–1801  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1791}
1792
1793const ISC_STATUS* nextCode(const ISC_STATUS* v) throw()
1794{
1795 do
1796 {
1797 v += nextArg(v[0]);
1798 } while (v[0] != isc_arg_warning && v[0] != isc_arg_gds && v[0] != isc_arg_end);
1799
1800 return v;
1801}
1802
1803bool containsErrorCode(const ISC_STATUS* v, ISC_STATUS code)
1804{

Callers 2

setInitialOptionsMethod · 0.85
containsErrorCodeFunction · 0.85

Calls 1

nextArgFunction · 0.85

Tested by

no test coverage detected