Objective
Implement a function that writes a string to standard output, adds a trailing newline, and returns a non-negative value on success.
Steps
$ puts("git status")
git status
$ puts("")
Expected files
Allowed functions
Allowed headers
Standard C library
Implements the contract of a function from the standard C library.

Objective
Implement a function that writes a string to standard output, adds a trailing newline, and returns a non-negative value on success.
Steps
$ puts("git status")
git status
$ puts("")
Expected files
Allowed functions
Allowed headers
Standard C library
Implements the contract of a function from the standard C library.

Tests
Run the tests to grade your code