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

Function strlen

StereoKitC/libraries/unicode.cpp:163–168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

161///////////////////////////////////////////
162
163size_t strlen(const char16_t *str) {
164 if(!str) return 0;
165 const char16_t* curr = str;
166 while (*curr) curr++;
167 return curr-str;
168}
169
170///////////////////////////////////////////
171

Callers 15

demo_picker_on_pickFunction · 0.85
_string_copyMethod · 0.85
skg_buffer_nameFunction · 0.85
skg_mesh_nameFunction · 0.85
skg_shader_nameFunction · 0.85
skg_pipeline_nameFunction · 0.85
skg_tex_nameFunction · 0.85
skg_initFunction · 0.85
skg_shader_stage_createFunction · 0.85
skg_swapchain_createFunction · 0.85
ply_readFunction · 0.85
cgltf_load_buffer_fileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected