| 26 | char *prefix_filename_except_for_dash(const char *prefix, const char *path); |
| 27 | |
| 28 | static inline int is_absolute_path(const char *path) |
| 29 | { |
| 30 | return is_dir_sep(path[0]) || has_dos_drive_prefix(path); |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Add a path to a buffer, converting a relative path to an |
no outgoing calls