I am trying to write a function that will do the same thing as strcmp (string comparison) does. I am also adding something to make this case sensitive
Maybe this will help. This is what it is written out.:
strcmp takes two cstrings and compares character by character until
it finds two characters that don't match or it reaches the end of both cstrings.
It will return a negative number if the character in the first cstring
comes before the character in the second
It will return a positive number if the character in the first cstring
comes after the character in the second