Skip to content
Snippets Groups Projects
Commit 6d9be492 authored by Arnaud Blanchard's avatar Arnaud Blanchard
Browse files

Adapt test with multiple parameter

parent 096865d7
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ int main( int argc, char **argv){
fprintf(stderr, "- The first argument is: '%s'\n", first_parameter);
if (optional_parameter) {
fprintf(stderr, "- The optional argument is: '%s'\n", optional_parameter);
fprintf(stderr, "- The list of parameters is:\n");
fprintf(stderr, "- The list of unlimited argument is:\n");
for(char **parameter = parameter_list; *parameter!=nullptr; parameter++){
fprintf(stderr, " - %s\n", *parameter);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment