Sha256: a54fd06ed344d972b2824c11271f232d481a1b6f1c5367f31e899308e2a935e0

Contents?: true

Size: 1.44 KB

Versions: 6

Compression:

Stored size: 1.44 KB

Contents

#include "arraytoc.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/**
 * raw data to base85 char map
 */
static char gsIntToChar[85];

/**
 * base 85 char to int
 */
static uint32_t gsCharToInt[256];

/*
 * Set up the above arrays
 */
static void initTables(void)
{
    int i = 0;
    int j = 0;
    for (i = 0; i < 256; i++) {
        gsCharToInt[i] = 99;
    }

    /* i < 33 or '!' is unprintable
     * 127 is an unprintable character
     */
    for (i = '!', j = 0; j < 85 && i < 127; ++i) {

        /* You can have 8 restrictions in the following line.
         * Traditional postscript removes: ';', '&', '\', '"'
         *   so that 'last' character is 'y' ('z' is special)
         * For web/cookie applications, I recommend those plus ','
         */
        if (i == ';' || i == '&' || i == '\\' || i == '"' || i == ',') {
            continue;
        }
        gsIntToChar[j] = (char)i;
        gsCharToInt[i] = (uint32_t)j;
        ++j;
    }

    if (j != 85) {
        fprintf(stderr, "Error in base85 table.  You probably had too many restrictions\n");
        exit(1);
    }
}

/**
 * beginning headers
 */
static void printStart(void)
{
    printf("/* do not edit -- autogenerated from b85gen */\n");
}

int main(void)
{
    initTables();
    printStart();
    uint32_array_to_c(gsCharToInt, sizeof(gsCharToInt) / sizeof(uint32_t), "gsCharToInt");
    char_array_to_c(gsIntToChar, sizeof(gsIntToChar), "gsIntToChar");
    return 0;
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ffi-hydrogen-0.1.5 vendor/stringencoders/src/modp_b85_gen.c
ffi-hydrogen-0.1.4 vendor/stringencoders/src/modp_b85_gen.c
ffi-hydrogen-0.1.3 vendor/stringencoders/src/modp_b85_gen.c
ffi-hydrogen-0.1.2 vendor/stringencoders/src/modp_b85_gen.c
ffi-hydrogen-0.1.1 vendor/stringencoders/src/modp_b85_gen.c
ffi-hydrogen-0.1.0 vendor/stringencoders/src/modp_b85_gen.c