version 1.91 | | version 1.92 |
---|
| | |
/* | | /* |
* static char *rcsid_map_c = | | * static char *rcsid_map_c = |
* "$Id: map.c,v 1.91 2005/11/30 07:58:47 mwedel Exp $"; | | * "$Id: map.c,v 1.92 2005/12/05 23:34:03 akirschbaum Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
* dump_map on each one. | | * dump_map on each one. |
*/ | | */ |
| | |
void dump_all_maps() { | | void dump_all_maps(void) { |
mapstruct *m; | | mapstruct *m; |
for(m=first_map;m!=NULL;m=m->next) { | | for(m=first_map;m!=NULL;m=m->next) { |
dump_map(m); | | dump_map(m); |
| | |
* used anyways. MSW 2001-07-01 | | * used anyways. MSW 2001-07-01 |
*/ | | */ |
| | |
mapstruct *get_linked_map() { | | mapstruct *get_linked_map(void) { |
mapstruct *map=(mapstruct *) calloc(1,sizeof(mapstruct)); | | mapstruct *map=(mapstruct *) calloc(1,sizeof(mapstruct)); |
mapstruct *mp; | | mapstruct *mp; |
| | |
| | |
(void) unlink(m->tmpname); | | (void) unlink(m->tmpname); |
} | | } |
| | |
void free_all_maps() | | void free_all_maps(void) |
{ | | { |
int real_maps=0; | | int real_maps=0; |
| | |