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:
parent
e92fe52031
commit
ccc6e69a29
3 changed files with 89 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue