Objective
Write a function that appends at most n characters from src onto the end of dst, then terminates the result.
Steps
$ strncat("git ", "rebase --interactive", 6)
git rebase
$ strncat("docker ", "compose", 64)
docker compose
$ strncat("commit", " --amend", 0)
commit
Expected files
Allowed functions
None. Write every helper yourself.
Allowed headers
Standard C library
Implements the contract of a function from the standard C library.

Objective
Write a function that appends at most n characters from src onto the end of dst, then terminates the result.
Steps
$ strncat("git ", "rebase --interactive", 6)
git rebase
$ strncat("docker ", "compose", 64)
docker compose
$ strncat("commit", " --amend", 0)
commit
Expected files
Allowed functions
None. Write every helper yourself.
Allowed headers
Standard C library
Implements the contract of a function from the standard C library.

Tests
Run the tests to grade your code