source: trunk/yao/share/antlr-2.7.7/examples/cpp/tokenStreamRewrite/input.c @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

  • Property svn:eol-style set to native
File size: 159 bytes
Line 
1int i;
2int *i;
3
4int f(char c, char *d)
5{
6        int f;
7        c = 'c';
8        d = "foo";
9        i = c+3*f;
10        if ( i ) {
11                f = c;
12        }
13        else {
14                f = 1;
15        }
16}
17
18void g() {
19        int x;
20        x = 3;
21}
Note: See TracBrowser for help on using the repository browser.