mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 15:52:01 +07:00
15 lines
371 B
C
15 lines
371 B
C
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(int argc __attribute__((unused)), const char **argv __attribute__((unused)), const char **env) {
|
|
const char **v = env;
|
|
while (*v != NULL) {
|
|
fputs(*v, stdout);
|
|
fputc('\0', stdout);
|
|
v++;
|
|
}
|
|
|
|
return 0;
|
|
}
|