#include "readLine.h" char *readLine(char *buff){ char *inicio = buff; char *line = NULL; unsigned int size = 0; unsigned int i = 0; size = strlen(buff); do{ if(buff[i]=='\n') break; i++; }while(i