aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/args.cpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-10-15 17:27:19 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-10-15 17:27:29 +0300
commitb2436ef9390b9dddb9c010eec5caca40400f8c8b (patch)
tree43c356dfeb5060066b4bd4b64ea06b1615a07f85 /test/args.cpp
parentWIP: add simple Process class (diff)
downloadwinapi-common-b2436ef9390b9dddb9c010eec5caca40400f8c8b.tar.gz
winapi-common-b2436ef9390b9dddb9c010eec5caca40400f8c8b.zip
rename utility "args" to "echo"
Diffstat (limited to 'test/args.cpp')
-rw-r--r--test/args.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/args.cpp b/test/args.cpp
deleted file mode 100644
index 470819a..0000000
--- a/test/args.cpp
+++ /dev/null
@@ -1,13 +0,0 @@
-// 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.
-
-#include <iostream>
-
-int wmain(int argc, wchar_t* argv[]) {
- for (int i = 0; i < argc; ++i) {
- std::wcout << argv[i] << L'\n';
- }
- return 0;
-}