version 1.13 | | version 1.14 |
---|
| | |
/* | | /* |
* static char *rcsid_style_c = | | * static char *rcsid_style_c = |
* "$Id: style.c,v 1.13 2001/05/08 07:11:26 mwedel Exp $"; | | * "$Id: style.c,v 1.14 2001/05/13 08:21:54 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
} | | } |
| | |
| | |
| | void free_style_maps() |
| | { |
| | mapstruct *next; |
| | int style_maps=0; |
| | |
| | /* delete_map will try to free it from the linked list, |
| | * but won't find it, so we need to do it ourselves |
| | */ |
| | while (styles) { |
| | next = styles->next; |
| | delete_map(styles); |
| | styles=next; |
| | style_maps++; |
| | } |
| | LOG(llevDebug,"free_style_maps: Freed %d maps\n", style_maps); |
| | } |