version 1.4, 2005/01/18 14:20:19 |
version 1.6, 2019/12/13 15:41:36 |
Line 7 static char rcsid[]= |
|
Line 7 static char rcsid[]= |
|
|
|
#include <stdio.h> |
#include <stdio.h> |
#include <stdlib.h> |
#include <stdlib.h> |
|
#include <string.h> |
#include <unistd.h> |
#include <unistd.h> |
#include <ctype.h> |
#include <ctype.h> |
#include "fep_defs.h" |
#include "fep_defs.h" |
#include "fep_glob.h" |
#include "fep_glob.h" |
#include "fep_funcs.h" |
#include "fep_funcs.h" |
|
|
#if defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__APPLE_CC__) || defined(__INTERIX) |
#if defined(__FreeBSD__) || defined(__CYGWIN__) || defined(__APPLE_CC__) || defined(__INTERIX) || defined(ANDROID) |
#include <regex.h> |
#include <regex.h> |
regex_t Re_pat; |
regex_t Re_pat; |
#define re_comp(p) (regcomp(&Re_pat,(p), REG_EXTENDED|REG_NOSUB)) |
#define re_comp(p) (regcomp(&Re_pat,(p), REG_EXTENDED|REG_NOSUB)) |