#include <funcs.hpp>
// Loop through all functions, displaying their comments including repeatable comments.
for (int i = 0; i < get_func_qty(); i++)
{
func_t *curFunc = getn_func(i);
msg("%a: %s\n", curFunc->startEA, get_func_comment(curFunc, false));
}







