mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
/*
|
|
* Copyright (c) 2021, Ben Wiederhake <BenWiederhake.GitHub@gmx.de>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Random.h>
|
|
#include <AK/String.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibMain/Main.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
ErrorOr<int> serenity_main([[maybe_unused]] Main::Arguments arguments)
|
|
{
|
|
TRY(Core::System::pledge("stdio"sv));
|
|
|
|
Vector<String> lines;
|
|
|
|
char* buffer = nullptr;
|
|
for (;;) {
|
|
size_t n = 0;
|
|
errno = 0;
|
|
ssize_t buflen = getline(&buffer, &n, stdin);
|
|
if (buflen == -1 && errno != 0) {
|
|
perror("getline");
|
|
exit(1);
|
|
}
|
|
if (buflen == -1)
|
|
break;
|
|
lines.append({ buffer, AK::ShouldChomp::Chomp });
|
|
}
|
|
free(buffer);
|
|
|
|
if (lines.is_empty())
|
|
return 0;
|
|
|
|
// Fisher-Yates shuffle
|
|
String tmp;
|
|
for (size_t i = lines.size() - 1; i >= 1; --i) {
|
|
size_t j = get_random_uniform(i + 1);
|
|
// Swap i and j
|
|
if (i == j)
|
|
continue;
|
|
tmp = move(lines[j]);
|
|
lines[j] = move(lines[i]);
|
|
lines[i] = move(tmp);
|
|
}
|
|
|
|
for (auto& line : lines) {
|
|
fputs(line.characters(), stdout);
|
|
fputc('\n', stdout);
|
|
}
|
|
|
|
return 0;
|
|
}
|