mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-03-25 08:45:52 +00:00
14 lines
387 B
C
14 lines
387 B
C
/*
|
|
* A simple shell with some basic features.
|
|
*
|
|
* Sami Samhuri 0327342
|
|
* January 31, 2006
|
|
* CSC 360, Assignment 1
|
|
*
|
|
* exec.h
|
|
* $Id: exec.h 183 2006-01-27 11:24:52Z sjs $
|
|
*/
|
|
|
|
/* execute the command argv[0], with arg list argv[], background can be
|
|
* non-zero to run the task in the background under our limited job control */
|
|
pid_t exec_command ( char **argv, int background );
|