#######################################################################################################################* *-----------------------------------------------------Directory/File------------------------------------------------------* *#########################################################################################################################*/
| 285 | *-----------------------------------------------------Directory/File------------------------------------------------------* |
| 286 | *#########################################################################################################################*/ |
| 287 | void Platform_EncodePath(cc_filepath* dst, const cc_string* path) { |
| 288 | char* str = dst->buffer; |
| 289 | String_EncodeUtf8(str, path); |
| 290 | } |
| 291 | |
| 292 | void Platform_DecodePath(cc_string* dst, const cc_filepath* path) { |
| 293 | const char* str = path->buffer; |
no test coverage detected