repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
The first function in the plugin must return a pointer to the plugin_table.
[AROS.git]
/
test
/
clib
/
environ.c
blob
a9f2fbbda5449d715fd61912024d170e34917430
1
#include <stdio.h>
2
3
extern
char
**
environ
;
4
5
int
main
(
void
)
6
{
7
int
i
;
8
9
for
(
i
=
0
;
environ
[
i
] !=
NULL
;
i
++)
10
puts
(
environ
[
i
]);
11
12
puts
(
"-- No environment variables left."
);
13
14
return
0
;
15
}