Inserting VZGOT development tree within GIT
[safe/jmp/vzgot] / lib / subprc.h
1 /************************************************/
2 /*                                              */
3 /*      Copyright:                              */
4 /*       Jean-Marc Pigeon <jmp@safe.ca>  2009   */
5 /*                                              */
6 /************************************************/
7 /* This program is free software; you can       */
8 /* redistribute it and/or modify it under the   */
9 /* terms of the GNU General Public License as   */
10 /* published by the Free Software Foundation    */
11 /* version 2 of the License                     */
12 /*                                              */
13 /* This program is distributed in the hope that */
14 /* it will be useful, but WITHOUT ANY WARRANTY; */
15 /* without even the implied warranty of         */
16 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR  */
17 /* PURPOSE.  See the GNU General Public License */
18 /* for more details.                            */
19 /*                                              */
20 /* You should have received a copy of the GNU   */
21 /* General Public License along with this       */
22 /* program; if not, write to the Free Software  */
23 /* Foundation, Inc., 51 Franklin Street,        */
24 /* Fifth Floor, Boston, MA  02110-1301, USA.    */
25 /************************************************/
26 /*                                              */
27 /*      SUBPRC:                                 */
28 /*      take care of all low level process      */
29 /*      handling.                               */
30 /*                                              */
31 /************************************************/
32 #include        <unistd.h>
33 #include        <stdlib.h>
34 #ifndef SUBPRC
35 #define SUBPRC
36 #include        <stdarg.h>
37
38 extern char **prc_cleantitle();
39 extern char **prc_preptitle(int argc,char *argv[],char *env[]);
40 extern void prc_settitle(const char *fmt,...);
41 extern void prc_divedivedive(int foreground);
42 extern void prc_pace(u_long millisec,int onoff);
43 #endif