libcello

Higher-level programming library for C with OOP features

brewmacoslinux
Try with needOr install directly
Source

About

Higher-level programming in C

Commands

cello

Examples

Compile a C program using Libcello$ gcc -o program program.c -lcello
Create and use a Libcello list data structure$ echo '#include <cello.h> int main() { var x = new(List, Int, 1, 2, 3); }' > test.c && gcc -o test test.c -lcello
Link against Libcello for object-oriented C programming$ gcc -Wall -o myapp main.c -lcello -lm