ripex 0.2.0

Multi-language structural parsing and fact extraction.
Documentation
1
2
3
4
5
6
7
8
9
10
// ripex-lang-test: C math header — function pointer typedef.
#ifndef RIPEX_MATH_H
#define RIPEX_MATH_H

typedef int (*binary_op)(int, int);

int add(int a, int b);
int sum(int* xs, int n);

#endif // RIPEX_MATH_H