Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
master-embedded-systems
c-exercise-solutions public
Commits
95367f4c
Commit
95367f4c
authored
Aug 23, 2017
by
Dominik Widhalm
Browse files
Fixed minor typos in comments of task 6.09
parent
a3440127
Changes
1
Hide whitespace changes
Inline
Side-by-side
ch_6/task_09/main.c
View file @
95367f4c
...
...
@@ -51,7 +51,7 @@ void stack_print (cmd_t *head);
* *
* @param head Pointer to pointer to the first stack element *
* @param command Pointer to the desired command *
* @retval OK Pushing successful
l
*
* @retval OK Pushing successful
*
* @retval FULL Pushing failed -- stack is full *
******************************************************************************/
retval_t
stack_push
(
cmd_t
**
head
,
char
*
command
)
{
...
...
@@ -94,8 +94,8 @@ retval_t stack_push (cmd_t **head, char *command) {
* the next command from the stack. *
* *
* @param head Pointer to pointer to the first stack element *
* @param command Pointer to the readback command
*
* @retval OK Popping successful
l
*
* @param command Pointer to the read
back command *
* @retval OK Popping successful
*
* @retval FULL Popping failed -- stack is empty *
******************************************************************************/
retval_t
stack_pop
(
cmd_t
**
head
,
char
*
command
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment