MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/PositionBasedDynamics / nk_strlen

Function nk_strlen

extern/glfw/deps/nuklear.h:6366–6373  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6364 NK_MEMSET(ptr, 0, size);
6365}
6366NK_API int
6367nk_strlen(const char *str)
6368{
6369 int siz = 0;
6370 NK_ASSERT(str);
6371 while (str && *str++ != '\0') siz++;
6372 return siz;
6373}
6374NK_API int
6375nk_strtoi(const char *str, const char **endptr)
6376{

Callers 15

nk_glfw3_clipbard_pasteFunction · 0.85
nk_strmatch_fuzzy_stringFunction · 0.85
nk_strrev_asciiFunction · 0.85
nk_vsnprintfFunction · 0.85
nk_str_append_str_charFunction · 0.85
nk_str_insert_str_charFunction · 0.85
nk_panel_beginFunction · 0.85
nk_find_windowFunction · 0.85
nk_begin_titledFunction · 0.85
nk_window_is_collapsedFunction · 0.85
nk_window_is_closedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected