Skip to content
Snippets Groups Projects
Commit 3cde8cd9 authored by a2-stratford's avatar a2-stratford
Browse files

Update argument_parsing.h using snake case

parent df6a4552
No related branches found
No related tags found
1 merge request!5Alex/6 implement populate stack process
......@@ -14,9 +14,9 @@ int parse_arguments(const char* command_line, char***argv);
* Given stack pointer `esp`, argument count `argc` and arguments array `argv`,
* Populates the stack pointed to by the stack pointer with the given arguments.
* esp is the initial stack pointer from process.c,
* I have used stackPointer as the name as that makes sense inside populate_stack,
* In process.c esp has been renamed to initialStackPointer
* I have used stackPointer as the name as that makes sense inside,
* populate_stack, in process.c esp has been renamed to initial_stack_pointer
*/
void populate_stack(void** stackPointer, int argc, char** argv);
void populate_stack(void** stack_pointer, int argc, char** argv);
#endif /* userprog/argument_parsing.h */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment