blob: d9fbc4c21fbdd331e1595de60fab8eda8fdd2370 (
plain)
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
26
27
|
#ifndef COORD_H
#define COORD_H
#include "trans.h"
extern Coordinate coord_eofb;
extern Coordinate coord_eofbepos;
extern Coordinate coord_coud;
extern Coordinate coord_cp;
extern Coordinate coord_cphtr;
extern Coordinate coord_corners;
extern Coordinate coord_cornershtr;
extern Coordinate coord_cornershtrfin;
extern Coordinate coord_epud;
extern Coordinate coord_drud;
extern Coordinate coord_drud_eofb;
extern Coordinate coord_htr_drud;
extern Coordinate coord_htrfin;
extern Coordinate coord_cpud_separate;
extern int cpud_separate_ant[BINOM8ON4];
extern int cpud_separate_ind[FACTORIAL8];
extern int cornershtrfin_ant[24*24/6];
void init_coord(void);
#endif
|