bool sym_string_within_range(struct symbol *sym, const char *str);
 bool sym_set_string_value(struct symbol *sym, const char *newval);
 bool sym_is_changeable(const struct symbol *sym);
+struct menu *sym_get_prompt_menu(const struct symbol *sym);
 struct menu *sym_get_choice_menu(const struct symbol *sym);
 const char * sym_get_string_value(struct symbol *sym);
 
 
        return "???";
 }
 
+/**
+ * sym_get_prompt_menu - get the menu entry with a prompt
+ *
+ * @sym: a symbol pointer
+ *
+ * Return: the menu entry with a prompt.
+ */
+struct menu *sym_get_prompt_menu(const struct symbol *sym)
+{
+       struct menu *m;
+
+       list_for_each_entry(m, &sym->menus, link)
+               if (m->prompt)
+                       return m;
+
+       return NULL;
+}
+
 /**
  * sym_get_choice_menu - get the parent choice menu if present
  *
 struct menu *sym_get_choice_menu(const struct symbol *sym)
 {
        struct menu *menu = NULL;
-       struct menu *m;
 
        /*
         * Choice members must have a prompt. Find a menu entry with a prompt,
         * and assume it resides inside a choice block.
         */
-       list_for_each_entry(m, &sym->menus, link)
-               if (m->prompt) {
-                       menu = m;
-                       break;
-               }
-
+       menu = sym_get_prompt_menu(sym);
        if (!menu)
                return NULL;