Objective
Write a program that receives two strings and checks, case-insensitively, whether every character of the first string appears in the second string in the same relative order.
Steps
$ ./seq_scan "run" "RxUxNxtime" | cat -e
run$
$ ./seq_scan "Run" "runtimex" | cat -e
Run$
$ ./seq_scan "build" "BdIlLd" | cat -e
$
$ ./seq_scan | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that receives two strings and checks, case-insensitively, whether every character of the first string appears in the second string in the same relative order.
Steps
$ ./seq_scan "run" "RxUxNxtime" | cat -e
run$
$ ./seq_scan "Run" "runtimex" | cat -e
Run$
$ ./seq_scan "build" "BdIlLd" | cat -e
$
$ ./seq_scan | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code