| 190 | } |
| 191 | |
| 192 | void appendPath(TFE_PathType pathType, const char* filename, char* path, size_t bufferLen/* = TFE_MAX_PATH*/) |
| 193 | { |
| 194 | snprintf(path, bufferLen, "%s%s", getPath(pathType), filename); |
| 195 | } |
| 196 | |
| 197 | void fixupPathAsDirectory(char* fullPath) |
| 198 | { |
no test coverage detected