MCPcopy Create free account
hub / github.com/git/git / prep_base85

Function prep_base85

base85.c:30–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29static char de85[256];
30static void prep_base85(void)
31{
32 if (de85['Z'])
33 return;
34 for (size_t i = 0; i < ARRAY_SIZE(en85); i++) {
35 int ch = en85[i];
36 de85[ch] = i + 1;
37 }
38}
39
40int decode_85(char *dst, const char *buffer, int len)
41{

Callers 1

decode_85Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected