static size_t read_past_comma()

in source/huffman_generator/generator.c [35:41]


static size_t read_past_comma(const char *str) {
    size_t offset = 0;
    while (str[offset] != ',') {
        ++offset;
    }
    return offset + 1;
}