ladybird/Userland/Utilities/tr.cpp
Brian Gianforcaro 1682f0b760 Everything: Move to SPDX license identifiers in all files.
SPDX License Identifiers are a more compact / standardized
way of representing file license information.

See: https://spdx.dev/resources/use/#identifiers

This was done with the `ambr` search and replace tool.

 ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-22 11:22:27 +02:00

40 lines
944 B
C++

/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/QuickSort.h>
#include <AK/String.h>
#include <AK/Vector.h>
#include <LibCore/ArgsParser.h>
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv)
{
const char* from_chars = nullptr;
const char* to_chars = nullptr;
Core::ArgsParser args_parser;
args_parser.add_positional_argument(from_chars, "Character to translate from", "from");
args_parser.add_positional_argument(to_chars, "Character to translate to", "to");
args_parser.parse(argc, argv);
// TODO: Support multiple characters to translate from and to
auto from = from_chars[0];
auto to = to_chars[0];
for (;;) {
char ch = fgetc(stdin);
if (feof(stdin))
break;
if (ch == from)
putchar(to);
else
putchar(ch);
}
return 0;
}