1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

shell: Comment internal members, too

Closes #979.
This commit is contained in:
René Kijewski 2014-04-28 10:41:14 +02:00
parent bda23cb246
commit 07cc72576e

View File

@ -52,10 +52,10 @@ typedef struct shell_command_t {
* and shell_run() to run the REPL session.
*/
typedef struct shell_t {
const shell_command_t *command_list;
uint16_t shell_buffer_size;
int (*readchar)(void);
void (*put_char)(int);
const shell_command_t *command_list; /**< The commandlist supplied to shell_init(). */
uint16_t shell_buffer_size; /**< The maximum line length supplied to shell_init(). */
int (*readchar)(void); /**< The read function supplied to shell_init(). */
void (*put_char)(int); /**< The write function supplied to shell_init(). */
} shell_t;
/**