Skip to content
Merged
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
21 changes: 10 additions & 11 deletions docs/c-runtime-library/reference/popen-wpopen.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,15 @@ Creates a pipe and executes a command.

## Syntax

```

FILE *_popen(
const char *command,
const char *mode
);
FILE *_wpopen(
const wchar_t *command,
const wchar_t *mode
);
```
FILE *_popen(
const char *command,
const char *mode
);
FILE *_wpopen(
const wchar_t *command,
const wchar_t *mode
);
```

#### Parameters
Expand Down Expand Up @@ -194,4 +193,4 @@ Process returned 0
## See Also
[Process and Environment Control](../../c-runtime-library/process-and-environment-control.md)
[_pclose](../../c-runtime-library/reference/pclose.md)
[_pipe](../../c-runtime-library/reference/pipe.md)
[_pipe](../../c-runtime-library/reference/pipe.md)