MCPcopy Create free account
hub / github.com/OpenStarbound/OpenStarbound / is_base64

Function is_base64

source/core/StarEncode.cpp:128–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128static inline bool is_base64(unsigned char c) {
129 return (isalnum(c) || (c == '+') || (c == '/'));
130}
131
132size_t base64Decode(char const* src, size_t len, char* output, size_t outLen) {
133 if (outLen == 0)

Callers 1

base64DecodeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected