From 11cb30d22dc9395b2113be05d3589548ef29548c Mon Sep 17 00:00:00 2001 From: Joshua Saxby <joshua.a.saxby@gmail.com> Date: Sat, 30 Nov 2019 15:54:14 +0000 Subject: [PATCH] Declare as own work the things that I contributed --- userprog/argument_parsing.h | 6 ++++++ userprog/parse_arguments.c | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/userprog/argument_parsing.h b/userprog/argument_parsing.h index 7a490ec..585efe1 100644 --- a/userprog/argument_parsing.h +++ b/userprog/argument_parsing.h @@ -1,3 +1,9 @@ +/* + * argument_parsing.h --prototypes functions required for parsing arguments from + * command line and placing these into the program stack structure. + * + * Authored by Joshua Saxby + */ #ifndef USERPROG_ARGUMENT_PARSING_H #define USERPROG_ARGUMENT_PARSING_H diff --git a/userprog/parse_arguments.c b/userprog/parse_arguments.c index 85fcdaf..5998749 100644 --- a/userprog/parse_arguments.c +++ b/userprog/parse_arguments.c @@ -1,3 +1,9 @@ +/* + * parse_arguments.c --implements function for pasing a command-line string into + * the program arguments contained within it. + * + * Authored by Joshua Saxby + */ #include <stddef.h> #include <string.h> -- GitLab