home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / p / psh / c / dbg < prev    next >
Encoding:
Text File  |  1995-05-08  |  307 b   |  21 lines

  1. /* vi:tabstop=4:shiftwidth=4:smartindent
  2.  *
  3.  * dbg.c - Toggle the debuggng flag
  4.  *
  5.  */
  6.  
  7. #include <stdio.h>
  8. #include "psh.h"
  9.  
  10. int    sh_dbg(int argc, char **argv)
  11. {
  12.     if (argc != 1)
  13.     {
  14.         fprintf(stderr, "Usage: xyzzy\n");
  15.         return 1;
  16.     }
  17.     printf("Debugging is %s\n", (debug=!debug) ? "on" : "off");
  18.     return 0;
  19. }
  20.  
  21.