/*************************/
/*			 */
/*   Appendix A Global   */
/*   Definitions	 */
/*			 */
/*			 */
/*			 */
/*			 */
/*************************/

#include 
#include 
#include 

#define EOL 10
#define STOP_CHAR 38
#define SPACE 32
#define TRUE 1
#define FALSE 0
#define PI 3.14159265
#define TWO_PI 6.2831853
#define TEN (double) 10.0
#define MAX_COLUMNS 20
#define MAX_ROWS 20
/* structure define for single presision complex */

/* struct complex
	{
	float Re;
	float Im;
	};
*/	
/* structure define for double presision conplex */

struct complex
	{
	double Re;
	double Im;
	};
	
typedef int logical;
typedef double real;