mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-10-05 19:18:01 +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
|