Esempio n. 1
0
File: ppproc.c Progetto: BR903/cppp
/* Mark the ppproc as having reached the end of the current file.
 */
static void endfile(struct ppproc *ppp)
{
    endstream(ppp->cl);
    if (ppp->level != -1)
	error(errOpenIf);
    ppp->line[0] = '\0';
}
Esempio n. 2
0
File: pp.c Progetto: 0xroot/radare2
/* Mark the ppproc as having reached the end of the current file.
 */
static void end_pp(CparsePP *ppp)
{
    endstream(ppp->cl);
    if (ppp->level != -1)
	error(errOpenIf);
    ppp->line[0] = '\0';
}