MCPcopy Create free account
hub / github.com/StereoKit/StereoKit / string_eq

Function string_eq

StereoKitC/libraries/stref.cpp:72–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70///////////////////////////////////////////
71
72bool string_eq(const char *a, const char *b) {
73 if (a == nullptr || b == nullptr) return false;
74 while (*a != '\0' && *b != '\0') {
75 if (*a != *b)
76 return false;
77 a++;
78 b++;
79 }
80 return *a == *b;
81}
82
83///////////////////////////////////////////
84

Callers 10

systems_find_idFunction · 0.85
systems_find_idxFunction · 0.85
systems_shutdownFunction · 0.85
material_set_texture_idFunction · 0.85
model_node_findFunction · 0.85
model_anim_findFunction · 0.85
platform_iterate_dirFunction · 0.85
web_on_keyFunction · 0.85
platform_iterate_dirFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected