blob: e1e50fbad39317d6f8c50c932a1252ee2a7a007a [file] [log] [blame]
//===---------- UEFI implementation of IO utils ------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===-----------------------------------------------------------------===//
#include "io.h"
#include "Uefi.h"
#include "config/app.h"
#include "src/__support/CPP/string_view.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
ssize_t read_from_stdin([[gnu::unused]] char *buf,
[[gnu::unused]] size_t size) {
return 0;
}
void write_to_stdout(cpp::string_view msg) {
// TODO: use mbstowcs once implemented
for (size_t i = 0; i < msg.size(); i++) {
char16_t e[2] = {msg[i], 0};
app.system_table->ConOut->OutputString(
app.system_table->ConOut, reinterpret_cast<const char16_t *>(&e));
}
}
void write_to_stderr(cpp::string_view msg) {
// TODO: use mbstowcs once implemented
for (size_t i = 0; i < msg.size(); i++) {
char16_t e[2] = {msg[i], 0};
app.system_table->StdErr->OutputString(
app.system_table->StdErr, reinterpret_cast<const char16_t *>(&e));
}
}
} // namespace LIBC_NAMESPACE_DECL