Changeset 550af2b in mainline for kernel/generic/src/console/prompt.c


Ignore:
Timestamp:
2012-07-10T12:40:50Z (12 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f4a8734
Parents:
aca4a04
Message:

Add missing documentation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/console/prompt.c

    raca4a04 r550af2b  
    3939#include <console/prompt.h>
    4040
     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 */
    4147bool console_prompt_display_all_hints(indev_t *indev, size_t hints)
    4248{
     
    5864}
    5965
     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 */
    6074bool console_prompt_more_hints(indev_t *indev, size_t *display_hints)
    6175{
Note: See TracChangeset for help on using the changeset viewer.