diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-15 17:27:19 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-15 17:27:29 +0300 |
commit | b2436ef9390b9dddb9c010eec5caca40400f8c8b (patch) | |
tree | 43c356dfeb5060066b4bd4b64ea06b1615a07f85 /test/echo.cpp | |
parent | WIP: add simple Process class (diff) | |
download | winapi-common-b2436ef9390b9dddb9c010eec5caca40400f8c8b.tar.gz winapi-common-b2436ef9390b9dddb9c010eec5caca40400f8c8b.zip |
rename utility "args" to "echo"
Diffstat (limited to 'test/echo.cpp')
-rw-r--r-- | test/echo.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/echo.cpp b/test/echo.cpp new file mode 100644 index 0000000..6d6e6df --- /dev/null +++ b/test/echo.cpp @@ -0,0 +1,15 @@ +// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com> +// This file is part of the "winapi-common" project. +// For details, see https://github.com/egor-tensin/winapi-common. +// Distributed under the MIT License. + +// Simple UTF-16 echo. + +#include <iostream> + +int wmain(int argc, wchar_t* argv[]) { + for (int i = 1; i < argc; ++i) { + std::wcout << argv[i] << L'\n'; + } + return 0; +} |