blob: 0468b4661f58437aa91872e132248237d776338d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _PTY_H
#define _PTY_H
#include <termios.h>
#ifdef __cplusplus
extern "C" {
#endif
int openpty(int *mfd, int *sfd, char *name, const struct termios *ios, const struct winsize *win);
#ifdef __cplusplus
}
#endif
#endif // _PTY_H
|