#pragma once #ifdef __cplusplus extern "C" { #endif #include #include /************************ *** Team Kitty, 2020 *** *** Chroma *** ***********************/ typedef struct stackframe { struct stackframe* rbp; size_t rip; } stackframe_t; void StackTrace(size_t cycles); #ifdef __cplusplus } #endif