/* repsym.h */ /* * Macros. */ /* * Typedefs. */ #define MAX_STR 100 #define MAX_VALUE 1000 typedef struct symAssocIdxType { int alpo; int global; int card; int user; int last; } symAssocIdxType; typedef struct symAssocType { char symbol[MAX_STR]; char value[MAX_VALUE]; } symAssocType;