blob: 7ecc0b2f8cd0733daaa06b59513775457774a5dd (
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
|