The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
288 B
19 lines
288 B
4 years ago
|
#include<adder.h>
|
||
|
#include<stdlib.h>
|
||
|
|
||
|
struct _Adder {
|
||
|
int number;
|
||
|
};
|
||
|
|
||
|
adder* adder_create(int number) {
|
||
|
adder *a = malloc(sizeof(struct _Adder));
|
||
|
a->number = number;
|
||
|
return a;
|
||
|
}
|
||
|
|
||
|
// adder_add is implemented in the Rust file.
|
||
|
|
||
|
void adder_destroy(adder *a) {
|
||
|
free(a);
|
||
|
}
|