1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#ifndef __KOH_H #define __KOH_H #include <stdio.h> #include <stdlib.h> #include <time.h> #include <math.h> #include <string.h> #include <stdint.h> #include <time.h> typedef struct { int k; int levels; } koh_config; typedef struct { int x,y; int generaton; int size; } koh_node; #endif