#ifndef typesH #define typesH #define MAX_PUNCTE 500 // const MAX_PUNCTE = 500; // type typedef double TCoord; // TCoord = real; typedef struct{ TCoord x, y; } Punct; // Punct = record x, y: TCoord; end; typedef Punct TabelPuncte[MAX_PUNCTE]; // TabelPuncte = array[0..MAX_PUNCTE-1] of Punct; typedef Punct* PPunct; // PPunct = ^Punct; #endif