home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource3 / 187_01 / cant.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-12-30  |  600 b   |  19 lines

  1. /*@*****************************************************/
  2. /*@                                                    */
  3. /*@ cant - tell user that we cannot open given file.   */
  4. /*@        Returns to caller.                          */
  5. /*@                                                    */
  6. /*@   Usage:     cant(filename);                       */
  7. /*@       where filename is an ASCIIZ string.          */
  8. /*@                                                    */
  9. /*@*****************************************************/
  10.  
  11. cant(s)
  12. char *s;
  13. {
  14.     puts(s);
  15.     puts(": cannot open\n");
  16. }
  17.  
  18.  
  19.