diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-14 18:40:11 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-14 18:41:32 +0200 |
commit | cb6b3c47dc5c3cb4ab391a082fe0666066fdd4f4 (patch) | |
tree | 315e9324d82ffae8e64c846585c94928406c0eb5 /src/process.h | |
parent | msg: add functions for one-off communication (diff) | |
download | cimple-cb6b3c47dc5c3cb4ab391a082fe0666066fdd4f4.tar.gz cimple-cb6b3c47dc5c3cb4ab391a082fe0666066fdd4f4.zip |
process: add process_output_dump
Diffstat (limited to 'src/process.h')
-rw-r--r-- | src/process.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h index 7f22a88..5726fd3 100644 --- a/src/process.h +++ b/src/process.h @@ -28,4 +28,6 @@ int proc_capture(const char *args[], const char *envp[], struct proc_output *res void proc_output_init(struct proc_output *); void proc_output_free(const struct proc_output *); +void proc_output_dump(const struct proc_output *); + #endif |