MCPcopy Create free account
hub / github.com/LadybugDB/ladybug / trimRightWhitespace

Function trimRightWhitespace

src/function/cast_from_string_functions.cpp:195–199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

193}
194
195static void trimRightWhitespace(const char* input, const char*& end) {
196 while (input < end && isspace(*(end - 1))) {
197 end--;
198 }
199}
200
201static void trimQuotes(const char*& keyStart, const char*& keyEnd) {
202 // Skip quotations on struct keys.

Callers 4

handleValueMethod · 0.85
handleKeyMethod · 0.85
handleValueMethod · 0.85
tryCastStringToStructFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected