MCPcopy Create free account
hub / github.com/crossuo/crossuo / cbase64__encode_value

Function cbase64__encode_value

external/cbase64.h:63–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

61#ifdef CBASE64_IMPLEMENTATION
62
63char cbase64__encode_value(unsigned char value_in)
64{
65 static const char* encoding = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
66 return encoding[(int)value_in];
67}
68
69char cbase64__decode_value(char value_in)
70{

Callers 2

cbase64_encode_blockFunction · 0.85
cbase64_encode_blockendFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected