Files
screen/src/telnet.h
Amadeusz Sławiński 8a8186850a More type fixes
2016-11-15 22:23:28 +01:00

20 lines
423 B
C

#ifndef SCREEN_TELNET_H
#define SCREEN_TELNET_H
#include "config.h"
#include "window.h"
#ifdef ENABLE_TELNET
int TelOpenAndConnect(Window *);
int TelIsline(Window *);
void TelProcessLine(char **, size_t *);
int DoTelnet(char *, size_t *, int);
int TelIn(Window *, char *, size_t, int);
void TelBreak(Window *);
void TelWindowSize(Window *);
void TelStatus(Window *, char *, size_t);
#endif
#endif /* SCREEN_TELNET_H */