Juan-aga / Minishell

The Unlicense
2 stars 1 forks source link

Implement echo with option -n #16

Closed emartinez-dev closed 1 year ago

emartinez-dev commented 1 year ago

The echo utility writes any specified operands, separated by single blank (') characters and followed by a newline (\n') character, to the standard output.

 The following option is available:

 -n    Do not print the trailing newline character.
Juan-aga commented 1 year ago

Implemented ft_echo(char **str).