Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Meituan-Dianping/SQLAdvisor
/ strcend
Function
strcend
strings/strcend.c:28–35 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
26
#include
"m_string.h"
27
28
char *strcend(register const char *s, register pchar c)
29
{
30
for (;;)
31
{
32
if (*s == (char) c) return (char*) s;
33
if (!*s++) return (char*) s-1;
34
}
35
}
36
Callers
5
mysql_read_default_options
Function · 0.85
dynstr_append_os_quoted
Function · 0.85
init_tmpdir
Function · 0.85
my_handle_options
Function · 0.85
check_struct_option
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected