Objective
Write a program that copies standard input to standard output while masking a chosen byte sequence.
Steps
$ printf 'alpha beta alpha\n' | ./stream_mask alpha | cat -e
***** beta *****$
$ printf 'aaaaa' | ./stream_mask aa | cat -e
****a
Expected files
Allowed functions

Objective
Write a program that copies standard input to standard output while masking a chosen byte sequence.
Steps
$ printf 'alpha beta alpha\n' | ./stream_mask alpha | cat -e
***** beta *****$
$ printf 'aaaaa' | ./stream_mask aa | cat -e
****a
Expected files
Allowed functions

Tests
Run the tests to grade your code