| 274 | } |
| 275 | |
| 276 | void Platform_DecodePath(cc_string* dst, const cc_filepath* path) { |
| 277 | int i; |
| 278 | for (i = 0; i < FILENAME_SIZE && path->uni[i]; i++) |
| 279 | { |
| 280 | String_Append(dst, Convert_CodepointToCP437(path->uni[i])); |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | cc_result Directory_Create2(const cc_filepath* path) { |
| 285 | cc_result res; |
nothing calls this directly
no test coverage detected