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

Function printa

src/gpre/languages/ftn.cpp:3937–3949  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3935//
3936
3937static void printa(const TEXT* column, const TEXT* string, ...)
3938{
3939 va_list ptr;
3940 SCHAR s[256];
3941
3942 va_start(ptr, string);
3943 strcpy(s, column);
3944 strcat(s, string);
3945 strcat(s, "\n");
3946 vsprintf(output_buffer, s, ptr);
3947 va_end(ptr);
3948 FTN_print_buffer(output_buffer);
3949}
3950
3951
3952//____________________________________________________________

Callers 15

FTN_actionFunction · 0.70
FTN_finiFunction · 0.70
asgn_fromFunction · 0.70
gen_at_endFunction · 0.70
gen_blob_closeFunction · 0.70
gen_blob_endFunction · 0.70
gen_blob_forFunction · 0.70
gen_blob_openFunction · 0.70
gen_compileFunction · 0.70
gen_create_databaseFunction · 0.70
gen_cursor_closeFunction · 0.70
gen_cursor_initFunction · 0.70

Calls 2

vsprintfFunction · 0.85
FTN_print_bufferFunction · 0.85

Tested by

no test coverage detected