Objective
Implement a function that appends the src string onto the end of the dst string, then returns dst.
Steps
$ strcat("src/", "main.c")
src/main.c
$ strcat("rebase done", "")
rebase done
Expected files
Allowed functions
None. Write every helper yourself.
Standard C library
Implements the contract of a function from the standard C library.

Objective
Implement a function that appends the src string onto the end of the dst string, then returns dst.
Steps
$ strcat("src/", "main.c")
src/main.c
$ strcat("rebase done", "")
rebase done
Expected files
Allowed functions
None. Write every helper yourself.
Standard C library
Implements the contract of a function from the standard C library.

Tests
Run the tests to grade your code