From 3cde8cd9df52f8f9cde1d5a4b3d15d368b837228 Mon Sep 17 00:00:00 2001 From: a2-stratford <alexander3.stratford@live.uwe.ac.uk> Date: Mon, 2 Dec 2019 14:00:56 +0000 Subject: [PATCH] Update argument_parsing.h using snake case --- userprog/argument_parsing.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/userprog/argument_parsing.h b/userprog/argument_parsing.h index 99ef71b..37b47e8 100644 --- a/userprog/argument_parsing.h +++ b/userprog/argument_parsing.h @@ -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 */ -- GitLab