home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / UTILITY / SYSTEM / XSPAWN34.ZIP / XSPAWNV.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-04  |  502 b   |  18 lines

  1. /*
  2.  *                   XSPAWN
  3.  *                Version 1.33
  4.  *  (C) Copyright 1990 Whitney Software, Inc.
  5.  *             All Rights Reserved
  6.  */
  7.  
  8. #include <stdio.h>
  9. #include "xspawnp.h"
  10.  
  11. int xspawnv( modeflag, path, argv )
  12. int modeflag;                    /* execution mode for parent process */
  13. char *path;                      /* file to be executed */
  14. char *argv[];                    /* array of pointers to arguments */
  15. {
  16.     return( xspawnve( modeflag, path, argv, NULL ));
  17. }
  18.