Objective
Write a function that copies the source string into the destination buffer.
Steps
$ strcpy(dst, "hello")
dst contains `hello`
Expected files
Allowed functions
None. Write every helper yourself.
Standard C library
Implements the contract of a function from the standard C library.

Objective
Write a function that copies the source string into the destination buffer.
Steps
$ strcpy(dst, "hello")
dst contains `hello`
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