mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-11-28 14:06:26 +03:00
a5c356f998
Just in the Chez backend for now, and not allowing strings or functions due to limitations of Chez.
23 lines
326 B
C
23 lines
326 B
C
#ifndef _STRUCT_H
|
|
#define _STRUCT_H
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
} point;
|
|
|
|
typedef struct {
|
|
char* name;
|
|
point* pt;
|
|
} namedpoint;
|
|
|
|
point* mkPoint(int x, int y);
|
|
void freePoint(point* pt);
|
|
|
|
namedpoint* mkNamedPoint(char* str, point* p);
|
|
void freeNamedPoint(namedpoint* np);
|
|
|
|
char* getString(void *p);
|
|
|
|
#endif
|