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 / outparam.lcl < prev    next >
Text File  |  1997-09-03  |  151b  |  7 lines

  1. typedef struct _st { int a; int b; } *st;
  2.  
  3. void f(out int *a, int *b) { modifies *a; }
  4. void h(out st s, out st t) { modifies *t; }
  5. int g (void) { } 
  6.  
  7.