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

Merge pull request #1065 from Kijewski/issue-979-2

shell: Comment internal members, too
This commit is contained in:
Christian Mehlis 2014-04-28 11:00:49 +02:00
commit 8d3e1b3add

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;
/**