gds-render/main.c

15 lines
189 B
C
Raw Normal View History

2018-05-07 13:27:50 +02:00
#include <stdio.h>
#include "gdsparse.h"
2018-05-07 15:57:47 +02:00
2018-05-07 13:27:50 +02:00
int main()
{
2018-05-07 15:57:47 +02:00
GList *libs = NULL;
2018-05-07 13:27:50 +02:00
unsigned int count = 0;
2018-05-07 15:17:29 +02:00
int i = 0;
2018-05-07 15:57:47 +02:00
parse_gds_from_file("/home/mari/Desktop/test.gds", &libs);
2018-05-07 13:27:50 +02:00
return 0;
}