summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/access/qnetworkreply/echo/main.cpp
blob: b10eaa745c3365951dd1e557e95ce9fb2f7389ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QtCore/QFile>

int main(int argc, char **)
{
    if (argc < 2) {
        printf("usage: echo\n");
        printf("echos all its input to its output.\n");
        return 1;
    }

    QFile file;
    if (!file.open(stdin, QFile::ReadWrite))
        return 1;
    QByteArray data = file.readAll();
    file.close();

    if (!file.open(stdout, QFile::WriteOnly))
        return 1;
    file.write(data);
    file.close();
    return 0;
}