home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / cctools / include / stuff / execute.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-21  |  449 b   |  18 lines

  1. /*
  2.  * execute() does an execvp using the argv passed to it.  If the parameter
  3.  * verbose is non-zero the command is printed to stderr.  A non-zero return
  4.  * value indicates success zero indicates failure.
  5.  */
  6. __private_extern__ int execute(
  7.     char **argv,
  8.     long verbose);
  9.  
  10. __private_extern__ void add_execute_list(
  11.     char *str);
  12.  
  13. __private_extern__ void reset_execute_list(
  14.     void);
  15.  
  16. __private_extern__ int execute_list(
  17.     long verbose);
  18.