1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:27:45 +00:00

LibC: Implement popen() and pclose().

I feel reasonably confident that I might have gotten these right. :^)
This commit is contained in:
Andreas Kling 2019-06-03 19:52:31 +02:00
parent e92fe52031
commit ccc6e69a29
3 changed files with 89 additions and 5 deletions

View file

@ -29,6 +29,7 @@ struct __STDIO_FILE {
int eof;
int error;
int mode;
pid_t popen_child;
char* buffer;
size_t buffer_size;
size_t buffer_index;