Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pty.h « include « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b92a2b4d624b591437e93d80a2f832b7c2bc849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef __PTY_H__
#define __PTY_H__

#include <_ansi.h>
#include <sys/termios.h>

#ifdef __cplusplus
extern "C" {
#endif

int _EXFUN(openpty ,(int *, int *, char *, const struct termios *,
		     const struct winsize *));
int _EXFUN(forkpty ,(int *, char *, const struct termios *,
		     const struct winsize *));

#ifdef __cplusplus
}
#endif

#endif /* __PTY_H__ */