home *** CD-ROM | disk | FTP | other *** search
- /* vi:tabstop=4:shiftwidth=4:smartindent
- *
- * dbg.c - Toggle the debuggng flag
- *
- */
-
- #include <stdio.h>
- #include "psh.h"
-
- int sh_dbg(int argc, char **argv)
- {
- if (argc != 1)
- {
- fprintf(stderr, "Usage: xyzzy\n");
- return 1;
- }
- printf("Debugging is %s\n", (debug=!debug) ? "on" : "off");
- return 0;
- }
-
-