mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
b83cb09db1
In 7c5e30daaa
, the focus was "only" on
Userland/Libraries/, whereas this commit cleans up the remaining
headers in the repo, and any new badly-formatted include.
31 lines
792 B
C++
31 lines
792 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/Assertions.h>
|
|
#include <AK/DeprecatedString.h>
|
|
#include <AK/Format.h>
|
|
#include <LibCore/System.h>
|
|
#include <LibMain/Main.h>
|
|
#include <stdio.h>
|
|
|
|
ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|
{
|
|
if (arguments.strings.size() < 2) {
|
|
warnln("usage: fgrep <str>");
|
|
return 1;
|
|
}
|
|
for (;;) {
|
|
char buffer[4096];
|
|
fgets(buffer, sizeof(buffer), stdin);
|
|
auto str = StringView { buffer, strlen(buffer) };
|
|
if (str.contains(arguments.strings[1]))
|
|
TRY(Core::System::write(1, str.bytes()));
|
|
if (feof(stdin))
|
|
return 0;
|
|
VERIFY(str.to_deprecated_string().characters());
|
|
}
|
|
}
|