Something went wrong on our end
-
Jake Drahos authored
Fixed up makefile for frontend-common.
Jake Drahos authoredFixed up makefile for frontend-common.
frontend_common.h 425 B
#ifndef FRONTEND_COMMON_H
#define FRONTEND_COMMON_H
struct backend_conn;
/* Start connection to quad */
struct backend_conn * ucart_backendConnect(void);
/* Stop connection to quad */
void ucart_backendDisconnect(struct backend_conn * conn);
/* Get a line from the backend.
*
* The line will remain valid until the next call to ucart_backendGetline.
*/
char * ucart_backendGetline(struct backend_conn * conn);
#endif