MCPcopy Create free account
hub / github.com/assimp/assimp / EncodeChar

Function EncodeChar

code/Common/Base64.cpp:62–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60static constexpr char tableEncodeBase64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
61
62static inline char EncodeChar(uint8_t b) {
63 return tableEncodeBase64[size_t(b)];
64}
65
66inline uint8_t DecodeChar(char c) {
67 if (c & 0x80) {

Callers 1

EncodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected