testing

Unnamed repository; edit this file 'description' to name the repository.
git clone https://git.deepztream.com/testing
Log | Files | Refs

commit 1ac42ca96ed3317f2cf3c4e71a0205ebc49e3526
Author: William Djupström <william@deepztream.com>
Date:   Sat, 10 May 2025 17:48:39 +0200

Created repo

Diffstat:
Atest.c | 14++++++++++++++
1 file changed, 14 insertions(+), 0 deletions(-)

diff --git a/test.c b/test.c @@ -0,0 +1,14 @@ +#include <stdio.h> + +int main(int argc, char **argv, char **env) +{ + printf("argc: %i\n", argc); + for (int i = 0; i < argc; ++i) { + printf(" argv[%i] = \"%s\"\n", argc, argv[i]); + } + putchar('\n'); + for (int i = 0; env[i]; ++i) { + printf(" env[%i] = \"%s\"\n", i, env[i]); + } + return 0; +}