opencodesearchparser 0.1.3

Rust Library for Parsing and Segmentation of Source code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>

int global_var = 42;
struct Point {
    int x;
    int y;
};

int add(int a, int b) {
    return a + b;
}
void print_hello() {
    printf("Hello, World!\n");
}

#define MAX 100