MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / tokenize_string_tailfile

Function tokenize_string_tailfile

nanofi/src/core/string_utils.c:157–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155}
156
157token_list tokenize_string_tailfile(const char * str, char delim) {
158 token_list tks = tokenize_string(str, delim);
159 if (tks.has_non_delimited_token) {
160 remove_last_node(&tks);
161 }
162 tks.has_non_delimited_token = 0;
163 return tks;
164}

Callers 2

log_aggregateFunction · 0.85

Calls 2

tokenize_stringFunction · 0.85
remove_last_nodeFunction · 0.85

Tested by

no test coverage detected