MCPcopy Create free account
hub / github.com/defold/defold / SkipSlashes

Function SkipSlashes

engine/dlib/src/dlib/path.cpp:25–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23{
24
25 static const char* SkipSlashes(const char* path)
26 {
27 while (*path && (*path == '/' || *path == '\\'))
28 {
29 ++path;
30 }
31 return path;
32 }
33
34 static const wchar_t* SkipSlashesW(const wchar_t* path)
35 {

Callers 1

NormalizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected