f2380eef05
git-subtree-dir: lcthw-remnants git-subtree-mainline:4107485591
git-subtree-split:e172f73c82
7 lines
100 B
Bash
Executable File
7 lines
100 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for func in $(cat iofunctions.txt)
|
|
do
|
|
echo "$func: $(grep "$func" *.c | wc -l)"
|
|
done
|