mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 18:32:28 -05:00
1682f0b760
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 *
31 lines
671 B
C++
31 lines
671 B
C++
/*
|
|
* Copyright (c) 2021, Peter Elliott <pelliott@ualberta.ca>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <AK/JsonObject.h>
|
|
#include <LibCore/File.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main()
|
|
{
|
|
if (pledge("stdio rpath", nullptr) < 0) {
|
|
perror("pledge");
|
|
return 1;
|
|
}
|
|
|
|
auto file = Core::File::construct("/proc/cpuinfo");
|
|
if (!file->open(Core::IODevice::ReadOnly)) {
|
|
perror("Core::File::open()");
|
|
return 1;
|
|
}
|
|
|
|
auto json = JsonValue::from_string({ file->read_all() });
|
|
auto cpuinfo_array = json.value().as_array();
|
|
outln("{}", cpuinfo_array.size());
|
|
|
|
return 0;
|
|
}
|