MCPcopy Create free account
hub / github.com/creatale/node-dv / cprintf

Function cprintf

deps/tesseract/cutil/callcpp.cpp:39–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37#include "unichar.h"
38
39void
40cprintf ( //Trace printf
41const char *format, ... //special message
42) {
43 va_list args; //variable args
44 char msg[1000];
45
46 va_start(args, format); //variable list
47 vsprintf(msg, format, args); //Format into msg
48 va_end(args);
49
50 tprintf ("%s", msg);
51}
52
53
54#ifndef GRAPHICS_DISABLED

Callers 15

PrintProtosFunction · 0.85
EndAdaptiveClassifierMethod · 0.85
ReadNormProtosMethod · 0.85
MatchMethod · 0.85
FindGoodProtosMethod · 0.85
FindBadFeaturesMethod · 0.85
IMDebugConfigurationFunction · 0.85
IMDebugConfigurationSumFunction · 0.85
AddProtoToProtoPrunerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected