Idris2/tests/chez/chez013/struct.c
Edwin Brady a972778eab Add test script
They don't all pass yet, for minor reasons. Coming shortly...
Unfortunately the startup overhead for chez is really noticeable here!
2020-05-19 18:25:18 +01:00

33 lines
507 B
C

#include <stdlib.h>
#include <stdio.h>
#include "struct.h"
char* getString(void *p) {
return (char*)p;
}
point* mkPoint(int x, int y) {
point* pt = malloc(sizeof(point));
pt->x = x;
pt->y = y;
return pt;
}
void freePoint(point* pt) {
free(pt);
}
namedpoint* mkNamedPoint(char* str, point* p) {
namedpoint* np = malloc(sizeof(namedpoint));
np->name = str;
np->pt = p;
printf("Made it!\n");
return np;
}
void freeNamedPoint(namedpoint* np) {
free(np);
}