home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_08 / 2n08064a < prev    next >
Text File  |  1991-06-30  |  145b  |  15 lines

  1.  
  2. #define len 10
  3. ...
  4. int f(const char *str, size_t len);
  5. ...
  6. int g(void)
  7.     {
  8.     size_t len;
  9.     ...
  10.     if (len > max)
  11.         len = max;
  12.     ...
  13.     }
  14.  
  15.