#include <name.hpp>
char name[MAXSTR];
// Get the name of the entry point, should be start in most cases.
char *res = get_name(BADADDR, inf.startIP, name, sizeof(name) - 1);
if (res != NULL)
msg("Name: %s\n", name);
else
msg("No name for %a\n", inf.startIP);







