#include #include // internal prototype. static void where(int argc, char **argv, struct session_s *session, char *info); // Define the command into the cache. CMDBLOCK("where", &where, NULL); /* where() - display the user postision in the Virtual Memory. */ static void where(int argc, char **argv, struct session_s *session, char *info) { (void)argc; (void)argv; sprintf(info, "%#x", session->anchor + (session->cursor << 1)); }