2003-08-15 23:31:16 +00:00
|
|
|
/*===- SysUtils.h - Utilities to do low-level system stuff -------*- C -*--===*\
|
2003-08-11 22:29:36 +00:00
|
|
|
* *
|
|
|
|
* This file contains functions used to do a variety of low-level, often *
|
|
|
|
* system-specific, tasks. *
|
|
|
|
* *
|
|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
|
|
|
|
#ifndef SYSUTILS_H
|
|
|
|
#define SYSUTILS_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* isExecutableFile - This function returns true if the filename specified
|
|
|
|
* exists and is executable.
|
|
|
|
*/
|
2003-08-15 23:31:16 +00:00
|
|
|
unsigned isExecutableFile(const char *ExeFileName);
|
2003-08-11 22:29:36 +00:00
|
|
|
|
|
|
|
/*
|
2003-08-15 23:31:16 +00:00
|
|
|
* FindExecutable - Find a named executable in the path.
|
2003-08-11 22:29:36 +00:00
|
|
|
*/
|
|
|
|
char *FindExecutable(const char *ExeName);
|
|
|
|
|
|
|
|
#endif
|