MCPcopy Create free account
hub / github.com/aldostools/webMAN-MOD / concat

Function concat

include/init/string.h:78–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76static t_string fast_concat;
77
78static size_t concat(char *dest, const char *src)
79{
80 if(!dest || !src) return 0;
81
82 if(fast_concat.str != dest)
83 {
84 fast_concat.str = dest;
85 fast_concat.size = 0;
86 }
87
88 return _concat(&fast_concat, src) - dest;
89}
90
91static int concat2(char *dest, const char *src1, const char *src2)
92{

Callers 15

qr_codeFunction · 0.85
add_game_infoFunction · 0.85
cpu_rsx_statsFunction · 0.85
add_breadcrumb_trailFunction · 0.85
setup_formFunction · 0.85
add_urlFunction · 0.85
add_htmlFunction · 0.85
add_radio_buttonFunction · 0.85
add_check_boxFunction · 0.85
add_option_itemFunction · 0.85
http_responseFunction · 0.85
mount.hFile · 0.85

Calls 1

_concatFunction · 0.85

Tested by

no test coverage detected