home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_11 / 1011086b < prev    next >
Text File  |  1992-10-05  |  283b  |  16 lines

  1.  
  2.  
  3. static int /* status */
  4. general_routine ()
  5.    {
  6.      if (<error condition 1>)
  7.           return (ERROR_CODE_1);
  8.      if (<error condition 2>)
  9.           return (ERROR_CODE_2);
  10.      ...
  11.      <more error checking>
  12.      <finally do something>
  13.      return (STS_OK);
  14.    }
  15.  
  16.