MCPcopy Create free account
hub / github.com/ByConity/ByConity / skipTag

Function skipTag

src/Functions/extractTextFromHTML.cpp:212–224  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210}
211
212bool skipTag(const char * __restrict & src, const char * end)
213{
214 if (src < end && *src == '<')
215 {
216 src = find_first_symbols<'>'>(src, end);
217 if (src < end)
218 ++src;
219
220 return true;
221 }
222
223 return false;
224}
225
226void copyText(const char * __restrict & src, const char * end, char * __restrict & dst, bool needs_whitespace)
227{

Callers 1

extractFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected