#incremental #parsing #c

tree-sitter-c

C grammar for the tree-sitter parsing library

3 releases

0.20.2 Aug 1, 2022
0.20.1 Sep 20, 2021
0.20.0 Sep 15, 2021

#6 in Text editors

Download history 469/week @ 2022-11-26 521/week @ 2022-12-03 661/week @ 2022-12-10 487/week @ 2022-12-17 492/week @ 2022-12-24 601/week @ 2022-12-31 584/week @ 2023-01-07 729/week @ 2023-01-14 796/week @ 2023-01-21 760/week @ 2023-01-28 790/week @ 2023-02-04 836/week @ 2023-02-11 782/week @ 2023-02-18 1068/week @ 2023-02-25 1449/week @ 2023-03-04 1225/week @ 2023-03-11

4,608 downloads per month
Used in 7 crates

MIT license

2.5MB
77K SLoC

C 76K SLoC JavaScript 1K SLoC // 0.0% comments Scheme 71 SLoC Rust 33 SLoC // 0.1% comments

tree-sitter-c

This crate provides a C grammar for the tree-sitter parsing library. To use this crate, add it to the [dependencies] section of your Cargo.toml file. (Note that you will probably also need to depend on the tree-sitter crate to use the parsed result in any useful way.)

[dependencies]
tree-sitter = "0.17"
tree-sitter-c = "0.16"

Typically, you will use the language function to add this grammar to a tree-sitter Parser, and then use the parser to parse some code:

let code = r#"
    int double(int x) {
        return x * 2;
    }
"#;
let mut parser = Parser::new();
parser.set_language(tree_sitter_c::language()).expect("Error loading C grammar");
let parsed = parser.parse(code, None);

If you have any questions, please reach out to us in the tree-sitter discussions page.

Dependencies

~1.3–1.9MB
~51K SLoC