2022-11-17 20:43:21 -05:00

17 lines
229 B
C

#ifndef PRINTFSERVER_H
#define PRINTFSERVER_H
enum ePrintfServerTickStates
{
PRINTF_SERVER_INIT_STATE,
PRINTF_SERVER_RUN_STATE
};
int OpenPrintfServer();
void TickPrintfServer();
void TelnetPutPrintf(char c);
#endif