Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ a `NULL` element. The example uses `subprocess_option_search_user_path` so the
absolute or relative path to the executable.

If the process is created successfully then 0 is returned from
`subprocess_create`.
`subprocess_create`. If process creation fails, a non-zero
`subprocess_error_e` value is returned (for example,
`subprocess_error_not_found` or `subprocess_error_permission_denied`). On POSIX
platforms, inspect `errno` for the platform-specific failure reason; on Windows,
inspect `GetLastError()`.

### Writing to the Standard Input of a Process

Expand Down
Loading
Loading