/*------------------------------------------------------------------------- ** This module contains all variables for the PTORBBS program called RBBS.c ** ** Created : 06/10/91 Author : J. A. Moriarty ** ** File Name : ivar.h ** ** Ver Date Changes By Modifications ** ---- --------- ------------- ---------------------------------------- ** 1.00 06/10/91 J. Moriarty Initial version ** 07/01/91 J. Moriarty Re done for C++ enviorment problems. ** 1.1 01/26/93 J. Moriarty Changed to do FMS file look alike for ** TBBS. **------------------------------------------------------------------------- */ #define MAXROWS 100 char fms_array[20][82]; /* storage of patent data for fms file */ int frow=-1,abstflg=0; /* designates row # for bac_array & fms_array */ char array[82]; /* array used for transfer of data */ char str2[81]; char dat_path[30]; /* vars for path of all files used */ char fms_path[30]; char clas[13]; char ch; int index,ix; /* vars for loops, for's return codes */ int rtncode,sucess; /* vars used as function return codes */ int finish; /* var that tell us if end of file is reached */ int first; /* vars used to tell functions if this is start of program*/ int fsize; /* var for file size of each patent text file */ int first_time=1; /* var for multiple main tag call */ int last_tag=0; char dates[9]; /* used for date convert from YYYYMMDD to MM-DD-YY */ char is_date[13];/* used to convert date from YYYYMMDD MMM DD, YYYY */ int pos1,pos2,pos3; int subtag_num; int number_of_patents=0; /* used as counter for how many patent files written */ int invent_row,assign_row; int assignee_flag;