diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-19 04:09:58 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-19 04:09:58 +0200 |
commit | 23a129810c6c2fc6abc37945079733eb98121282 (patch) | |
tree | a1a966f4e246573cd2020fe50ce6796dc94b8b40 | |
parent | 23916db38cab1264ba844ce04cdcbb1b424d7942 (diff) |
Add some documentation
-rw-r--r-- | butl/process | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/butl/process b/butl/process index c16e39e..c316904 100644 --- a/butl/process +++ b/butl/process @@ -44,6 +44,10 @@ namespace butl process_child_error (int e): process_error (e, true) {} }; + // Process arguments (i.e., the command line). The first must be an + // executable name and the last element should be NULL. Can also be the + // multi-process piped command line (see process::print() for details). + // struct process_args { const char* const* argv; |