mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
13 lines
269 B
C
13 lines
269 B
C
#ifndef COSMOPOLITAN_LIBC_INTRIN_GETENV_H_
|
|
#define COSMOPOLITAN_LIBC_INTRIN_GETENV_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct Env {
|
|
char *s;
|
|
int i;
|
|
};
|
|
|
|
struct Env __getenv(char **, const char *) libcesque;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_INTRIN_GETENV_H_ */
|