Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GNU Common Lisp package implementing forkpty()

I seek a GNU Common Lisp package which implements forkpty(); openpty() would also be a big plus, and login_tty() would be a luxury I could live with. (Duckduckgo, Google, etc. were of no help.) Is there such? Where?

like image 895
Bill Evans at Mariposa Avatar asked Mar 21 '11 12:03

Bill Evans at Mariposa


1 Answers

https://github.com/cffi-posix/ seems to be the right place to put the code you are looking for.

The idea is to port standard UNIX header files to CFFI-* packages.

like image 74
thodg Avatar answered Sep 18 '22 21:09

thodg