MCPcopy Create free account
hub / github.com/apache/trafficserver / isdotdot

Function isdotdot

include/tscore/ink_file.h:143–147  ·  view source on GitHub ↗

Is the given path ".."?

Source from the content-addressed store, hash-verified

141
142// Is the given path ".."?
143static inline bool
144isdotdot(const char *path)
145{
146 return path[0] == '.' && path[1] == '.' && path[2] == '\0';
147}

Callers 2

threads_for_processFunction · 0.85
parse_include_directiveFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected