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

Function zconf_error

scripts/config/parser.tab.c:2006–2016  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2004}
2005
2006static void zconf_error(const char *err, ...)
2007{
2008 va_list ap;
2009
2010 yynerrs++;
2011 fprintf(stderr, "%s:%d: ", zconf_curname(), zconf_lineno());
2012 va_start(ap, err);
2013 vfprintf(stderr, err, ap);
2014 va_end(ap);
2015 fprintf(stderr, "\n");
2016}
2017
2018static void yyerror(const char *err)
2019{

Callers 2

yyparseFunction · 0.85
zconf_endtokenFunction · 0.85

Calls 2

zconf_curnameFunction · 0.85
zconf_linenoFunction · 0.85

Tested by

no test coverage detected