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

Function printa

src/gpre/languages/cob.cpp:4092–4104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4090//
4091
4092static void printa(const TEXT* column, bool call, const TEXT* string, ...)
4093{
4094 va_list ptr;
4095 TEXT s[256];
4096
4097 va_start(ptr, string);
4098 strcpy(s, column);
4099 strcat(s, string);
4100 strcat(s, "\n");
4101 vsprintf(output_buffer, s, ptr);
4102 va_end(ptr);
4103 COB_print_buffer(output_buffer, call);
4104}
4105
4106
4107#ifdef NOT_USED_OR_REPLACED

Callers 15

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_clear_handlesFunction · 0.70
gen_compileFunction · 0.70
gen_create_databaseFunction · 0.70
gen_cursor_closeFunction · 0.70
gen_cursor_initFunction · 0.70
gen_cursor_openFunction · 0.70

Calls 2

vsprintfFunction · 0.85
COB_print_bufferFunction · 0.85

Tested by

no test coverage detected