MCPcopy Create free account
hub / github.com/Entware/Entware / conf_message

Function conf_message

scripts/config/confdata.c:183–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181}
182
183static void conf_message(const char *fmt, ...)
184{
185 va_list ap;
186 char buf[4096];
187
188 if (!conf_message_callback)
189 return;
190
191 va_start(ap, fmt);
192
193 vsnprintf(buf, sizeof(buf), fmt, ap);
194 conf_message_callback(buf);
195 va_end(ap);
196}
197
198const char *conf_get_configname(void)
199{

Callers 2

conf_read_simpleFunction · 0.85
conf_writeFunction · 0.85

Calls 1

conf_message_callbackFunction · 0.70

Tested by

no test coverage detected