diff options
| author | tv <tv@NetBSD.org> | 1998-08-28 15:59:01 +0000 |
|---|---|---|
| committer | tv <tv@NetBSD.org> | 1998-08-28 15:59:01 +0000 |
| commit | bb655b8a737fccd92da52290b70ba967cea0bb25 (patch) | |
| tree | 7787170c1fd1e5743c8ad3f2b3195f5e83727974 /gnu/dist/include | |
| parent | b5a6ca0501a595edb3d73dae8706a2e656350213 (diff) | |
Conflict resolution.
Diffstat (limited to 'gnu/dist/include')
| -rw-r--r-- | gnu/dist/include/libiberty.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/dist/include/libiberty.h b/gnu/dist/include/libiberty.h index bce80e8044c..cc9946c4c6f 100644 --- a/gnu/dist/include/libiberty.h +++ b/gnu/dist/include/libiberty.h @@ -10,6 +10,10 @@ #ifndef LIBIBERTY_H #define LIBIBERTY_H +#ifdef __cplusplus +extern "C" { +#endif + #include "ansidecl.h" /* Build an argument vector from a string. Allocates memory using @@ -21,6 +25,12 @@ extern char **buildargv PARAMS ((char *)); extern void freeargv PARAMS ((char **)); +/* Duplicate an argument vector. Allocates memory using malloc. Use + freeargv to free the vector. */ + +extern char **dupargv PARAMS ((char **)); + + /* Return the last component of a path name. Note that we can't use a prototype here because the parameter is declared inconsistently across different systems, sometimes as "char *" and sometimes as @@ -141,4 +151,26 @@ extern void hex_init PARAMS ((void)); the argument being performed exactly once. */ #define hex_value(c) (_hex_value[(unsigned char) (c)]) +/* Definitions used by the pexecute routine. */ + +#define PEXECUTE_FIRST 1 +#define PEXECUTE_LAST 2 +#define PEXECUTE_ONE (PEXECUTE_FIRST + PEXECUTE_LAST) +#define PEXECUTE_SEARCH 4 +#define PEXECUTE_VERBOSE 8 + +/* Execute a program. */ + +extern int pexecute PARAMS ((const char *, char * const *, const char *, + const char *, char **, char **, int)); + +/* Wait for pexecute to finish. */ + +extern int pwait PARAMS ((int, int *, int)); + +#ifdef __cplusplus +} +#endif + + #endif /* ! defined (LIBIBERTY_H) */ |
