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 / tests2.2 / sizeofarray.c < prev    next >
Text File  |  1997-09-03  |  107b  |  12 lines

  1. int f (int x[32])
  2. {
  3.   int a[23];
  4.  
  5.   if (sizeof(x) == 3)
  6.     {
  7.       return 1;
  8.     }
  9.  
  10.   return sizeof(a);
  11. }
  12.