[NFC][Py Reformat] Added more commits to .git-blame-ignore-revs
[llvm-project.git] / libc / src / __support / StringUtil / signal_to_string.h
blob694015336b41ce7fb19ccbbeb32a72c425d6da04
1 //===-- Function prototype for mapping signals to strings -------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "src/__support/CPP/span.h"
10 #include "src/__support/CPP/string_view.h"
12 #ifndef LLVM_LIBC_SRC_SUPPORT_SIGNAL_TO_STRING_H
13 #define LLVM_LIBC_SRC_SUPPORT_SIGNAL_TO_STRING_H
15 namespace __llvm_libc {
17 cpp::string_view get_signal_string(int err_num);
19 cpp::string_view get_signal_string(int err_num, cpp::span<char> buffer);
21 } // namespace __llvm_libc
23 #endif // LLVM_LIBC_SRC_SUPPORT_SIGNAL_TO_STRING_H