Changes in kernel/generic/src/console/prompt.c [63e27ef:dfc07c1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/prompt.c
r63e27ef rdfc07c1 37 37 */ 38 38 39 #include <assert.h>40 39 #include <console/prompt.h> 41 40 … … 50 49 bool console_prompt_display_all_hints(indev_t *indev, size_t hints) 51 50 { 52 assert(indev);53 assert(hints > 0);51 ASSERT(indev); 52 ASSERT(hints > 0); 54 53 55 54 printf("Display all %zu possibilities? (y or n) ", hints); … … 82 81 bool console_prompt_more_hints(indev_t *indev, size_t *display_hints) 83 82 { 84 assert(indev);85 assert(display_hints != NULL);83 ASSERT(indev); 84 ASSERT(display_hints != NULL); 86 85 87 86 printf("--More--");
Note:
See TracChangeset
for help on using the changeset viewer.