Skip to content
Snippets Groups Projects
Unverified Commit fd2d35f0 authored by Jake Drahos's avatar Jake Drahos
Browse files

Added backendGetline

parent fc22384c
No related branches found
No related tags found
No related merge requests found
......@@ -77,3 +77,9 @@ void ucart_backendDisconnect(struct backend_conn * conn)
}
free(conn);
}
char * ucart_backendGetline(struct backend_conn *conn)
{
getline(&conn->buf, &conn->len, conn->socket);
return conn->buf;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment