MCPcopy Create free account
hub / github.com/ZDoom/Raze / Compare

Method Compare

source/common/utility/zstring.h:326–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324 void Remove(size_t index, size_t remlen);
325
326 int Compare (const FString &other) const { return strcmp (Chars, other.Chars); }
327 int Compare (const char *other) const { return strcmp (Chars, other); }
328 int Compare(const FString &other, size_t len) const { return strncmp(Chars, other.Chars, len); }
329 int Compare(const char *other, size_t len) const { return strncmp(Chars, other, len); }

Callers 4

AppendArgsStringMethod · 0.45
NormalizeFileNameFunction · 0.45
CompareMethod · 0.45
ChangeListMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected