home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lclint.zip / lclint-2_3h-os2-bin.zip / test / repexpose.lcl < prev    next >
Text File  |  1997-09-03  |  396b  |  18 lines

  1. mutable type abst ;
  2. immutable type immut ;
  3.  
  4. char **globstring;
  5.  
  6. only abst abst_create (dependent abst p, only char *x, int i) 
  7.    char **globstring; { }
  8.  
  9. only char *abst_name (abst a) { }
  10. int abst_val (abst a) { }
  11. int *abst_aval (abst a) { }
  12. only abst abst_parent (only abst a) { }
  13. dependent char *immut_name (immut im) { }
  14. void abst_setIm (abst a, immut im) { }
  15. immut abst_getIm (abst a) { } 
  16.  
  17.  
  18.