MCPcopy Create free account
hub / github.com/Bareflank/hypervisor / bfdebug_d64

Function bfdebug_d64

loader/tests/include/debug.h:154–158  ·  view source on GitHub ↗

* <!-- description --> * @brief Outputs a string and an 64bit dec to the console * * <!-- inputs/outputs --> * @param str the string to output * @param val the 64bit dec value to output */

Source from the content-addressed store, hash-verified

152 * @param val the 64bit dec value to output
153 */
154static inline void
155bfdebug_d64(char const *const str, uint64_t const val) NOEXCEPT
156{
157 printf("[BAREFLANK DEBUG] %s: %" PRId64 "\n", str, val);
158}
159
160/**
161 * <!-- description -->

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected