home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / CONTRIB / MBASE / MBASE51.TAR / mbase51 / examples / example2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-04  |  446 b   |  20 lines

  1. /*
  2.  * This header file was created to reflect the structure of the relation
  3.  * example2.rel; header built on Fri Sep 3 1993 at 8:17 pm.
  4.  *
  5.  * MetalBase 5.1 released January 1st, 1993 by Huan-Ti.
  6.  *
  7.  */
  8.  
  9. #ifndef EXAMPLE2_H
  10. #define EXAMPLE2_H
  11.  
  12. typedef struct
  13.    {
  14.    char     item[40];         /* description of an item in a store's invento */
  15.    long     val;              /* number of 'em that are in stock             */
  16.    } example2;
  17.  
  18. #endif
  19.  
  20.