update struct syntax and comment fix

This commit is contained in:
Ole Morud
2022-06-07 15:49:22 +02:00
parent 5197b8d4cc
commit 87c0cb8d01

View File

@@ -8,12 +8,9 @@
#define FRAMERATE 10
typedef struct Point{
double x;
double y;
double px;
double py;
double fx;
double fy;
double x, y;
px, py;
fx, fy;
} Point;
typedef struct Link {
@@ -29,7 +26,7 @@ void update_point(Point* p);
/*
* main
* Main
*/
int main(){
char *data = malloc(40*40);