Project-Scylla/KNR C/ex1_16_improved.c

15 lines
233 B
C

#include <stdio.h>
/*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[]){
}