/* $Id: umatrix.h,v 1.1 1997/05/01 17:35:18 sandro Exp $ */
/* ------ matrici.c ------ */
#define STILE_CLASSICO 0
#define STILE_ALTERNATIVO 1
extern int stile;
extern char *aiuto_tbl[];
/* ------ lingua.c ------ */
#define LINGUA_ITALIANA 0
#define LINGUA_INGLESE 1
extern int lingua;
char *_getstr(char *s);
#define getstr(s) lingua == LINGUA_ITALIANA ? s : _getstr(s)
/* ------ misc.c ------ */
long leggi_long(char *fmt, ...);
double leggi_double(char *fmt, ...);
Matrice matr_leggi(char *nome);
Matrice matr_leggi_casuale(char *nome);
Matrice matr_leggi_unita(char *nome);
syntax highlighted by Code2HTML, v. 0.9.1