MCPcopy Create free account
hub / github.com/F-Stack/f-stack / csv_dbg

Function csv_dbg

tools/libxo/encoder/csv/enc_csv.c:163–175  ·  view source on GitHub ↗

* A simple debugging print function, similar to psu_dbg. Controlled by * the undocumented "debug" option. */

Source from the content-addressed store, hash-verified

161 * the undocumented "debug" option.
162 */
163static void
164csv_dbg (xo_handle_t *xop UNUSED, csv_private_t *csv UNUSED,
165 const char *fmt, ...)
166{
167 if (csv == NULL || !(csv->c_flags & CF_DEBUG))
168 return;
169
170 va_list vap;
171
172 va_start(vap, fmt);
173 vfprintf(stderr, fmt, vap);
174 va_end(vap);
175}
176
177/*
178 * Create the private data for this handle, initialize it, and record

Callers 10

csv_quote_flagsFunction · 0.85
csv_emit_recordFunction · 0.85
csv_open_levelFunction · 0.85
csv_close_levelFunction · 0.85
csv_leaf_numFunction · 0.85
csv_leaf_setFunction · 0.85
csv_record_leafsFunction · 0.85
csv_record_pathFunction · 0.85
csv_dataFunction · 0.85
csv_handlerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected