comparison src/lib/env-util.c @ 903:fd8888f6f037 HEAD

Naming style changes, finally got tired of most of the typedefs. Also the previous enum -> macro change reverted so that we don't use the highest bit anymore, that's incompatible with old indexes so they will be rebuilt.
author Timo Sirainen <tss@iki.fi>
date Sun, 05 Jan 2003 15:09:51 +0200
parents 8afbafd5deac
children ea3f6c93d1a2
comparison
equal deleted inserted replaced
902:5043e48c022f 903:fd8888f6f037
26 #include "lib.h" 26 #include "lib.h"
27 #include "env-util.h" 27 #include "env-util.h"
28 28
29 #include <stdlib.h> 29 #include <stdlib.h>
30 30
31 static Pool pool = NULL; 31 static pool_t pool = NULL;
32 32
33 void env_put(const char *env) 33 void env_put(const char *env)
34 { 34 {
35 if (pool == NULL) 35 if (pool == NULL)
36 pool = pool_alloconly_create("Environment", 1024); 36 pool = pool_alloconly_create("Environment", 1024);