aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/echo.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/echo.cpp (renamed from test/args.cpp)4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/args.cpp b/test/echo.cpp
index 470819a..6d6e6df 100644
--- a/test/args.cpp
+++ b/test/echo.cpp
@@ -3,10 +3,12 @@
// 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 = 0; i < argc; ++i) {
+ for (int i = 1; i < argc; ++i) {
std::wcout << argv[i] << L'\n';
}
return 0;