/*1* exec.h: header for exec.c2*3* Copyright 1990 Michael Sandrof4* Copyright 1997 EPIC Software Labs5* See the Copyright file for license information6*/78#ifndef __exec_h__9#define __exec_h__1011void execcmd (char *, char *, char *, char *);12void do_processes (fd_set *);13int get_child_exit (pid_t);14void clean_up_processes (void);15int text_to_process (int, const char *, int);16void exec_server_delete (int);17void add_process_wait (int, const char *);18int get_process_index (char **); /* XXXX */19int is_valid_process (const char *);20int process_is_running (char *);21int logical_to_index (const char *logical);22void kill_process (int, int);2324#endif /* _EXEC_H_ */252627