home *** CD-ROM | disk | FTP | other *** search
- /*
- ** String-related routines for mail2news.
- */
- #include "gate.h"
- #ifdef RCSID
- static char RCS[] =
- "$Header: /nfs/papaya/u2/rsalz/src/newsgate/src/RCS/str.c,v 1.6 91/03/13 15:57:16 rsalz Exp $";
- #endif /* RCSID */
-
-
- /*
- ** For Ozan Yigit's public domain regex.
- */
- /* ARGSUSED */
- void
- re_fail(text, arg)
- char *text;
- int arg;
- {
- }
-
-
- /*
- ** Free up something that ReadFile made. This doesn't belong here,
- ** but news2mail doesn't need it, so we don't want it in misc.c.
- */
- void
- FreeFile(V)
- char **V;
- {
- register char **p;
-
- if (p = V) {
- while (*p)
- free(*p++);
- free((char *)V);
- }
- }
-