ASTeterin / OOP

0 stars 0 forks source link

Замечания по RLE #4

Open alexey-malov opened 5 years ago

alexey-malov commented 5 years ago
alexey-malov commented 5 years ago
void CompressFile(istream &input, ostream &output)
{
    char ch = '\0';
    char next_ch = NULL;
alexey-malov commented 5 years ago
void CompressFile(istream &input, ostream &output)
{
    char ch = '\0';
    char next_ch = NULL;
    uint8_t count = 0;
    while (input.get(ch))
    {
        next_ch = input.peek();
alexey-malov commented 5 years ago
alexey-malov commented 5 years ago