use same location as .configured, etc, to store .files-touched
[AROS.git] / compiler / clib / __env.h
blobefd48df7392210665d512ed5cebb947b0ea6e87a
1 #ifndef ___ENV_H
2 #define ___ENV_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: internal header file for environment variables handling
9 Lang: english
12 typedef struct __env_item
14 struct __env_item *next;
15 char *name;
16 char *value;
17 } __env_item;
19 __env_item *__env_getvar(const char *varname, int valuesize);
20 void __env_delvar(const char *varname);
22 #endif /* ___ENV_H */