home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / regex / regfree.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  741b  |  39 lines

  1. #include <global.h>
  2. #include <sys/types.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <regex.h>
  6.  
  7. #include "utils.h"
  8. #include "regex2.h"
  9.  
  10. /*
  11.  - regfree - free everything
  12.  = extern void regfree(regex_t *);
  13.  */
  14. void
  15. regfree(preg)
  16. regex_t *preg;
  17. {
  18.     register struct re_guts *g;
  19.  
  20.     if (preg->re_magic != MAGIC1)    /* oops */
  21.         return;            /* nice to complain, but hard */
  22.  
  23.     g = preg->re_g;
  24.     if (g == NULL || g->magic != MAGIC2)    /* oops again */
  25.         return;
  26.     preg->re_magic = 0;        /* mark it invalid */
  27.     g->magic = 0;            /* mark it invalid */
  28.  
  29.     if (g->strip != NULL)
  30.         free((char *)g->strip);
  31.     if (g->sets != NULL)
  32.         free((char *)g->sets);
  33.     if (g->setbits != NULL)
  34.         free((char *)g->setbits);
  35.     if (g->must != NULL)
  36.         free(g->must);
  37.     free((char *)g);
  38. }
  39.