learningc/chapters/2/exercises/2.c

14 lines
253 B
C

#include <stdio.h>
#include <limits.h>
#include "shared/functions.h"
#include "shared/functions/getlines.c"
#define MAXLINE 1024
int main() {
char r[MAXLINE];
while (getlines(r, MAXLINE) != EOF) {
printf("%s", r);
}
return 0;
}