MCPcopy Create free account
hub / github.com/JACoders/OpenJK / COM_SkipPath

Function COM_SkipPath

code/qcommon/q_shared.cpp:34–46  ·  view source on GitHub ↗

============ COM_SkipPath ============ */

Source from the content-addressed store, hash-verified

32============
33*/
34char *COM_SkipPath (char *pathname)
35{
36 char *last;
37
38 last = pathname;
39 while (*pathname)
40 {
41 if (*pathname=='/')
42 last = pathname+1;
43 pathname++;
44 }
45 return last;
46}
47
48/*
49============

Callers 7

G_LoadAnimFileSetFunction · 0.50
NPC_PrecacheAnimationCFGFunction · 0.50
CFontInfoMethod · 0.50
GetFont_SBCSOverrideFunction · 0.50
R_LoadMDXMFunction · 0.50
RE_LoadWorldMap_ActualFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected