
char Processor(char *foo, char strlen) {
    bit done = 0;
    char cnt = 0;
    char bar;

    while (!done) {
        bar = GetNextChar();
        ++cnt;
        if ((bar == '\n') || (bar == strlen))
            done = 1;
        else {
            *foo = bar;
            ++foo;
        } // if bar
    } // while

    return cnt;
} // Processor