mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
11 lines
247 B
C
11 lines
247 B
C
/* Public domain. */
|
|
|
|
#ifndef PATHEXEC_H
|
|
#define PATHEXEC_H
|
|
|
|
extern void pathexec_run(const char *,const char * const *,const char * const *);
|
|
extern int pathexec_env(const char *,const char *);
|
|
extern void pathexec(const char * const *);
|
|
|
|
#endif
|