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

Function print_long

src/common/pretty.cpp:748–760  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

746//
747
748static SLONG print_long( ctl* control)
749{
750 const UCHAR v1 = BLR_BYTE;
751 const UCHAR v2 = BLR_BYTE;
752 const UCHAR v3 = BLR_BYTE;
753 const UCHAR v4 = BLR_BYTE;
754 sprintf(control->ctl_ptr, control->ctl_language ?
755 "chr(%d),chr(%d),chr(%d),chr(%d) " : "%d,%d,%d,%d, ",
756 v1, v2, v3, v4);
757 ADVANCE_PTR(control->ctl_ptr);
758
759 return v1 | (v2 << 8) | (v3 << 16) | (v4 << 24);
760}
761
762
763//____________________________________________________________

Callers 1

print_sdl_verbFunction · 0.85

Calls 1

ADVANCE_PTRFunction · 0.85

Tested by

no test coverage detected