Esempio n. 1
0
/**
 *  Will remove any entries from the define list
 *  that match the undef name pattern.
 */
char *
doDir_undef(directive_enum_t id, char const * dir, char * scan_next)
{
    dir = SPN_WHITESPACE_CHARS(dir);
    SET_OPT_UNDEFINE(dir);
    (void)id;
    return scan_next;
}
Esempio n. 2
0
/*=directive undef
 *
 *  arg:  name-to-undefine
 *
 *  text:
 *  Will remove any entries from the define list
 *  that match the undef name pattern.
=*/
static char*
doDir_undef(char* pzArg, char* pzScan)
{
    SET_OPT_UNDEFINE(pzArg);
    return pzScan;
}