parser-c 0.3.0

Macros for parser-c.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate parser_c;

use std::env;

use parser_c::parseCFilePre;
use parser_c::support::FilePath;

fn main() {
    let mut args = env::args();
    let input_file = FilePath { path: args.nth(1).unwrap() };
    let out = parseCFilePre(input_file);
    println!("{:#?}", out);
}