MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / SI_DuplicateStringVal

Function SI_DuplicateStringVal

src/value.c:96–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96SIValue SI_DuplicateStringVal(const char *s) {
97 return (SIValue) {
98 .stringval = rm_strdup(s), .type = T_STRING, .allocation = M_SELF
99 };
100}
101
102SIValue SI_ConstStringVal(const char *s) {
103 return (SIValue) {

Callers 7

SI_CloneValueFunction · 0.85
SIValue_FromStringFunction · 0.85
SIValue_ConcatStringFunction · 0.85
AR_LEFTFunction · 0.85
AR_LTRIMFunction · 0.85
AR_RIGHTFunction · 0.85
AR_REPLACEFunction · 0.85

Calls 1

rm_strdupFunction · 0.85

Tested by

no test coverage detected