Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MariaDB/server
/ strcend
Function
strcend
strings/strcend.c:40–47 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
38
#include
"strings_def.h"
39
40
char *strcend(register const char *s, register pchar c)
41
{
42
for (;;)
43
{
44
if (*s == (char) c) return (char*) s;
45
if (!*s++) return (char*) s-1;
46
}
47
}
48
Callers
11
construct_prompt
Function · 0.85
mysql_read_default_options
Function · 0.85
activate_tcp_port
Function · 0.85
wsrep_check_ip
Function · 0.85
my_getopt.c
File · 0.85
check_struct_option
Function · 0.85
dynstr_append_os_quoted
Function · 0.85
init_tmpdir
Function · 0.85
handle_options
Function · 0.85
my_hash_get_string
Function · 0.85
get_one_option
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected