Changeset 550af2b in mainline
- Timestamp:
- 2012-07-10T12:40:50Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f4a8734
- Parents:
- aca4a04
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/prompt.c
raca4a04 r550af2b 39 39 #include <console/prompt.h> 40 40 41 /** Display the <i>display all possibilities</i> prompt and wait for answer. 42 * 43 * @param indev Where to read characters from. 44 * @param hints Number of hints that would be displayed. 45 * @return Whether to print all hints. 46 */ 41 47 bool console_prompt_display_all_hints(indev_t *indev, size_t hints) 42 48 { … … 58 64 } 59 65 66 /** Display the <i>--more--</i> prompt and wait for answer. 67 * 68 * When the function returns false, @p display_hints is set to zero. 69 * 70 * @param[in] indev Where to read characters from. 71 * @param[out] display_hints How many hints to display. 72 * @return Whether to display more hints. 73 */ 60 74 bool console_prompt_more_hints(indev_t *indev, size_t *display_hints) 61 75 {
Note:
See TracChangeset
for help on using the changeset viewer.