cosmopolitan/libc/intrin/getenv.internal.h

14 lines
269 B
C
Raw Normal View History

2023-08-18 16:34:14 +00:00
#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;
2023-08-18 16:34:14 +00:00
COSMOPOLITAN_C_END_
#endif /* COSMOPOLITAN_LIBC_INTRIN_GETENV_H_ */