1 /* 2 * Copyright 2023, Trung Nguyen, trungnt282910@gmail.com. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef STRACE_SIGNAL_H 6 #define STRACE_SIGNAL_H 7 8 9 #include <string> 10 11 #include <signal.h> 12 13 14 std::string signal_name(int signal); 15 std::string signal_info(siginfo_t& info); 16 17 18 #endif // STRACE_SIGNAL_H 19