ppsym.c revision 3f54fd611f536639ec30dd53c48e5ec1897cc7d9
/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 1986-2011 AT&T Intellectual Property *
* and is licensed under the *
* Eclipse Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Glenn Fowler <gsf@research.att.com> *
* *
***********************************************************************/
#pragma prototyped
/*
* cpp predefined symbol detection support
*
* with no args stdin is treated as an a.out for
* a Reiser derived cpp -- all strings that may
* be identifiers are listed on fd 3 (1 if no 3)
*
* with args the -D argument values are listed on fd 3 (1 if no 3)
*/
#include <ast.h>
#include <ctype.h>
int
{
register int state;
register int c;
register char* s;
if (*++argv)
{
while (s = *argv++)
{
}
return 0;
}
state = 0;
for (;;)
{
{
case EOF:
break;
case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
case 'g': case 'h': case 'i': case 'j': case 'k': case 'l':
case 'm': case 'n': case 'o': case 'p': case 'q': case 'r':
case 's': case 't': case 'u': case 'v': case 'w': case 'x':
case 'y': case 'z': case '_':
case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
case 'G': case 'H': case 'I': case 'J': case 'K': case 'L':
case 'M': case 'N': case 'O': case 'P': case 'Q': case 'R':
case 'S': case 'T': case 'U': case 'V': case 'W': case 'X':
case 'Y': case 'Z':
state++;
continue;
case '0': case '1': case '2': case '3': case '4': case '5':
case '6': case '7': case '8': case '9':
if (state)
{
continue;
}
/*FALLTHROUGH*/
default:
if (state)
{
state = 0;
}
continue;
}
break;
}
return 0;
}