FastLED 3.9.15
Loading...
Searching...
No Matches

◆ base64_char_index()

static int fl::anonymous_namespace{base64.cpp.hpp}::base64_char_index ( char c)
static

Definition at line 11 of file base64.cpp.hpp.

11 {
12 if (c >= 'A' && c <= 'Z') return c - 'A';
13 if (c >= 'a' && c <= 'z') return c - 'a' + 26;
14 if (c >= '0' && c <= '9') return c - '0' + 52;
15 if (c == '+') return 62;
16 if (c == '/') return 63;
17 return -1;
18}

References base64_char_index().

Referenced by base64_char_index().

+ Here is the call graph for this function:
+ Here is the caller graph for this function: