| 290 | } |
| 291 | |
| 292 | void Platform_DecodePath(cc_string* dst, const cc_filepath* path) { |
| 293 | const char* str = path->buffer; |
| 294 | String_AppendUtf8(dst, str, String_Length(str)); |
| 295 | } |
| 296 | |
| 297 | #if defined CC_BUILD_ANDROID |
| 298 | /* implemented in Platform_Android.c */ |
nothing calls this directly
no test coverage detected