version 1.4 | | version 1.5 |
---|
| | |
/* | | /* |
* static char *rcsid_anim_c = | | * static char *rcsid_anim_c = |
* "$Id: anim.c,v 1.4 2001/01/24 05:01:36 cvs Exp $"; | | * "$Id: anim.c,v 1.5 2001/05/09 06:58:11 mwedel Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
#include <global.h> | | #include <global.h> |
#include <stdio.h> | | #include <stdio.h> |
| | |
| | void free_all_anim() { |
| | int i; |
| | |
| | for (i=0; i<num_animations; i++) { |
| | free_string(animations[i].name); |
| | free(animations[i].faces); |
| | } |
| | free(animations); |
| | } |
| | |
void init_anim() { | | void init_anim() { |
char buf[MAX_BUF]; | | char buf[MAX_BUF]; |
FILE *fp; | | FILE *fp; |