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

Function Platform_DecodePath

src/Platform_Windows.c:276–282  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

274}
275
276void 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
284cc_result Directory_Create2(const cc_filepath* path) {
285 cc_result res;

Callers

nothing calls this directly

Calls 2

String_AppendFunction · 0.85
Convert_CodepointToCP437Function · 0.85

Tested by

no test coverage detected