oak-c 0.0.11

High-performance incremental C parser for the oak ecosystem with flexible configuration, supporting low-level system programming features.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Simple C test file
int main() {
    int x = 10;
    int y = 20;
    return x + y;
}

// Struct definition
struct Point {
    int x;
    int y;
};

// Function definition
int add(int a, int b) {
    return a + b;
}