home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume18 / geneal / part01 / dataman.h < prev    next >
C/C++ Source or Header  |  1989-03-08  |  719b  |  27 lines

  1. /* dataman.h - include file for dataman structures */
  2. /* Written by Jim McBeath (jimmc) at SCI */
  3. /* last edit 24-Jan-85 08:02:52 by jimmc (Jim McBeath) */
  4. /* Revision history:
  5.  * 24-Jan-85    Jim McBeath    remove from dataman.c to create dataman.h
  6.  */
  7.  
  8. /* stdio must be included before this file is included */
  9.  
  10. #ifndef DATAMANH    /* safe for double inclusions */
  11. #define DATAMANH
  12.  
  13. struct dpoint {
  14.     FILE *ff;        /* which data file to read */
  15.     struct toplevel *xx;        /* pointer for index routine */
  16.     };
  17.  
  18. struct drecord {
  19.     int numfields;    /* number of name/value pairs */
  20.     char **name;    /* array of pointers to name strings */
  21.     char **value;    /* array of pointers to value strings */
  22. };
  23.  
  24. #endif DATAMANH
  25.  
  26. /* end */
  27.