19 lines
309 B
C
19 lines
309 B
C
|
#ifndef __interface_h
|
||
|
#define __interface_h
|
||
|
|
||
|
#define TRUE 1
|
||
|
#define FALSE 0
|
||
|
|
||
|
#if defined ( __cplusplus )
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern int triangulate_polygon(int, int *, double (*)[2], int (*)[3]);
|
||
|
extern int is_point_inside_polygon(double *);
|
||
|
|
||
|
#if defined ( __cplusplus )
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __interface_h */
|