| 1017 | } |
| 1018 | |
| 1019 | boolean |
| 1020 | file_exists(const char *path) |
| 1021 | { |
| 1022 | struct stat sb; |
| 1023 | |
| 1024 | /* Just see if it's there */ |
| 1025 | if (stat(path, &sb)) { |
| 1026 | return FALSE; |
| 1027 | } |
| 1028 | return TRUE; |
| 1029 | } |
| 1030 | |
| 1031 | void |
| 1032 | set_default_prefix_locations(const char *programPath UNUSED) |
no test coverage detected