summaryrefslogtreecommitdiffstats
path: root/usr/klibc/env.h
blob: ae70be874b9e43ad33f85a43cc400bbcee18cd84 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef ENV_H
#define ENV_H

/* str should be a duplicated version of the input string;
   len is the length of the key including the = sign */
int __put_env(char *str, size_t len, int overwrite);

extern char *const __null_environ[];

#endif