MCPcopy Create free account
hub / github.com/ClassiCube/ClassiCube / Platform_DecodePath

Function Platform_DecodePath

src/Platform_WinCE.c:235–241  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

233}
234
235void Platform_DecodePath(cc_string* dst, const cc_filepath* path) {
236 int i;
237 for (i = 0; i < FILENAME_SIZE && path->uni[i]; i++)
238 {
239 String_Append(dst, Convert_CodepointToCP437(path->uni[i]));
240 }
241}
242
243cc_result Directory_Create2(const cc_filepath* path) {
244 WCHAR fullPath[MAX_PATH];

Callers

nothing calls this directly

Calls 2

String_AppendFunction · 0.85
Convert_CodepointToCP437Function · 0.85

Tested by

no test coverage detected