Mercurial > hg > Applications > mh
view sbr/m_fmsg.c @ 3:f89a9a79e124
utf-8
author | kono |
---|---|
date | Wed, 20 Apr 2005 00:25:01 +0900 |
parents | bce86c4163a3 |
children | 441a2190cfae |
line wrap: on
line source
/* m_fmsg.c - free a folder */ #ifndef lint static char ident[] = "@(#)$Id$"; #endif /* lint */ #include "../h/mh.h" #include <stdio.h> void m_fmsg (mp) register struct msgs *mp; { register int i; if (mp == NULL) return; if (mp -> foldpath) free (mp -> foldpath); #ifdef MTR free ((char *) mp -> msgbase); #endif /* MTR */ for (i = 0; mp -> msgattrs[i]; i++) free (mp -> msgattrs[i]); free ((char *) mp); }