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

Update populate_stack.c to use snake_case

parent 01b774d9
No related branches found
No related tags found
1 merge request!5Alex/6 implement populate stack process
...@@ -50,6 +50,6 @@ void populate_stack(void* stack_pointer, int argc, char** argv) { ...@@ -50,6 +50,6 @@ void populate_stack(void* stack_pointer, int argc, char** argv) {
} }
// Adds the move value to the stack pointer // Adds the move value to the stack pointer
static void move_stack_pointer(void** stack_pointer, int moveValue) { static void move_stack_pointer(void** stack_pointer, int move_value) {
*stack_pointer = *stack_pointer + moveValue; *stack_pointer = *stack_pointer + move_value;
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment