mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-01 01:09:03 +03:00
32 lines
506 B
C
32 lines
506 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);
|
|
}
|