MCPcopy Index your code
hub / github.com/GJDuck/e9patch / warning

Function warning

src/e9patch/e9patch.cpp:123–135  ·  view source on GitHub ↗

* Print a warning message. */

Source from the content-addressed store, hash-verified

121 * Print a warning message.
122 */
123void warning(const char *msg, ...)
124{
125 fprintf(stderr, "%swarning%s: ",
126 (option_is_tty? "\33[33m": ""),
127 (option_is_tty? "\33[0m" : ""));
128
129 va_list ap;
130 va_start(ap, msg);
131 vfprintf(stderr, msg, ap);
132 va_end(ap);
133
134 putc('\n', stderr);
135}
136
137/*
138 * Print a debug message.

Callers 15

realMainFunction · 0.85
targetAnalysisFunction · 0.85
emitElfFunction · 0.85
emitBinaryFunction · 0.85
emitPEFunction · 0.85
parseBinaryFunction · 0.85
deprecatedFunction · 0.85
parseSymbolFunction · 0.85
parsePatchArgFunction · 0.85
checkCompatibleFunction · 0.85
e9frontend.cppFile · 0.85
parseExcludeBoundFunction · 0.85

Calls 3

putcFunction · 0.85
fprintfFunction · 0.50
vfprintfFunction · 0.50

Tested by

no test coverage detected