mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
11 lines
129 B
C
11 lines
129 B
C
/* Public domain. */
|
|
|
|
#ifndef ENV_H
|
|
#define ENV_H
|
|
|
|
extern char **environ;
|
|
|
|
extern /*@null@*/char *env_get(const char *);
|
|
|
|
#endif
|