blob: 9db6fb4e63e26671c8d05a97af10f1ec0152df43 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef PATHEXEC_H
#define PATHEXEC_H
#include "stralloc.h"
extern void pathexec_run(const char *,char *const *,char *const *);
extern int pathexec_env(const char *,const char *);
extern int pathexec_multienv(stralloc *);
extern void pathexec(char *const *);
#endif
|