parser-c 0.3.0

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

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

#[test]
fn simple_file() {
    let input_file = FilePath {
        path: "./tests/simple_file.c".to_owned(),
    };

    let todo = parseCFilePre(input_file);

    println!("OUT {:#?}", todo);
}