File: fork_exec_with_pty.h

package info (click to toggle)
haskell-posix-pty 0.2.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 88 kB
  • sloc: haskell: 244; ansic: 109; makefile: 6
file content (16 lines) | stat: -rwxr-xr-x 266 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __FORK_EXEC_WITH_PTY_H__
#define __FORK_EXEC_WITH_PTY_H__

#include <HsFFI.h>

int
fork_exec_with_pty
    ( HsInt sx
    , HsInt sy
    , int search
    , const char *file
    , char *const argv[]
    , char *const env[]
    , HsInt *child_pid
    );
#endif