MCPcopy Create free account
hub / github.com/apache/arrow / wcsstrlen

Function wcsstrlen

cpp/src/arrow/flight/sql/odbc/odbc_impl/encoding.h:51–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49
50template <typename CHAR_TYPE>
51inline size_t wcsstrlen(const void* wcs_string) {
52 size_t len;
53 for (len = 0; ((CHAR_TYPE*)wcs_string)[len]; len++) {
54 }
55 return len;
56}
57
58inline size_t wcsstrlen(const void* wcs_string) {
59 switch (GetSqlWCharSize()) {

Callers 1

WcsToUtf8Function · 0.85

Calls 3

GetSqlWCharSizeFunction · 0.85
DriverExceptionClass · 0.85
to_stringFunction · 0.85

Tested by

no test coverage detected