Carp/examples/banana.h
2018-03-26 08:47:46 +02:00

16 lines
234 B
C

#ifndef BANANA_H
#define BANANA_H
// This is an example external struct
typedef struct {
double price;
int size;
} Banana;
// This is an external function that can be registered
int magic() {
return 123456789;
}
#endif