resolve merge conflict small changes in heredoc

This commit is contained in:
hugogogo
2021-12-02 15:33:42 +01:00
41 changed files with 392 additions and 690 deletions

17
tests/env_var_test.c Normal file
View File

@@ -0,0 +1,17 @@
# include <stdio.h>
# include <stdlib.h>
int main(int argc, char *argv[], char *envp[])
{
int i;
printf("argc = %i\n", argc);
i = 0;
while (argv[i])
{
printf("%s = |%s|\n", argv[i], getenv(argv[i]));
i++;
}
return (0);
}