~vcs-imports/screen/master

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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 */