#include /*A version of KNR C exercise 1-16 from scratch with the goal of improving * readability.*/ int pullLine(char line[]); void copy(char from[], char to[]); int main(){ return 0; } int pullLine(char line[]){ }