亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? regex.c

?? 功能較全面的反匯編器:反匯編器ht-2.0.15.tar.gz
?? C
?? 第 1 頁 / 共 5 頁
字號:
/* Extended regular expression matching and search library,   version 0.12.   (Implements POSIX draft P10003.2/D11.2, except for   internationalization features.)   Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.   This program is free software; you can redistribute it and/or modify   it under the terms of the GNU General Public License as published by   the Free Software Foundation; either version 2, or (at your option)   any later version.   This program is distributed in the hope that it will be useful,   but WITHOUT ANY WARRANTY; without even the implied warranty of   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   GNU General Public License for more details.   You should have received a copy of the GNU General Public License   along with this program; if not, write to the Free Software   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  *//* AIX requires this to be the first thing in the file. */#if defined (_AIX) && !defined (REGEX_MALLOC)  #pragma alloca#endif#define _GNU_SOURCE#ifdef HAVE_CONFIG_H#include <config.h>#endif/* We need this for `regex.h', and perhaps for the Emacs include files.  */#include <sys/types.h>/* This is for other GNU distributions with internationalized messages.  */#if HAVE_LIBINTL_H || defined (_LIBC)# include <libintl.h>#else# define gettext(msgid) (msgid)#endif/* The `emacs' switch turns on certain matching commands   that make sense only in Emacs. */#ifdef emacs#include "lisp.h"#include "buffer.h"#include "syntax.h"#else  /* not emacs *//* If we are not linking with Emacs proper,   we can't use the relocating allocator   even if config.h says that we can.  */#undef REL_ALLOC#include <stdlib.h>/* When used in Emacs's lib-src, we need to get bzero and bcopy somehow.   If nothing else has been done, use the method below.  */#ifdef INHIBIT_STRING_HEADER#if !(defined (HAVE_BZERO) && defined (HAVE_BCOPY))#if !defined (bzero) && !defined (bcopy)#undef INHIBIT_STRING_HEADER#endif#endif#endif/* This is the normal way of making sure we have a bcopy and a bzero.   This is used in most programs--a few other programs avoid this   by defining INHIBIT_STRING_HEADER.  */#ifndef INHIBIT_STRING_HEADER/*#if defined (HAVE_STRING_H) || defined (STDC_HEADERS) || defined (_LIBC)*/#include <string.h>#ifndef bcmp#define bcmp(s1, s2, n)	memcmp ((s1), (s2), (n))#endif#ifndef bcopy#define bcopy(s, d, n)	memcpy ((d), (s), (n))#endif#ifndef bzero#define bzero(s, n)	memset ((s), 0, (n))#endif/*#else#include <strings.h>#endif*/#endif/* Define the syntax stuff for \<, \>, etc.  *//* This must be nonzero for the wordchar and notwordchar pattern   commands in re_match_2.  */#ifndef Sword #define Sword 1#endif#ifdef SWITCH_ENUM_BUG#define SWITCH_ENUM_CAST(x) ((int)(x))#else#define SWITCH_ENUM_CAST(x) (x)#endif#ifdef SYNTAX_TABLEextern char *re_syntax_table;#else /* not SYNTAX_TABLE *//* How many characters in the character set.  */#define CHAR_SET_SIZE 256static char re_syntax_table[CHAR_SET_SIZE];static voidinit_syntax_once (){   register int c;   static int done = 0;   if (done)	return;   bzero (re_syntax_table, sizeof re_syntax_table);   for (c = 'a'; c <= 'z'; c++)	re_syntax_table[c] = Sword;   for (c = 'A'; c <= 'Z'; c++)	re_syntax_table[c] = Sword;   for (c = '0'; c <= '9'; c++)	re_syntax_table[c] = Sword;   re_syntax_table['_'] = Sword;   done = 1;}#endif /* not SYNTAX_TABLE */#define SYNTAX(c) re_syntax_table[c]#endif /* not emacs *//* Get the interface, including the syntax bits.  */#include "regex.h"/* isalpha etc. are used for the character classes.  */#include <ctype.h>/* Jim Meyering writes:   "... Some ctype macros are valid only for character codes that   isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when   using /bin/cc or gcc but without giving an ansi option).  So, all   ctype uses should be through macros like ISPRINT...  If   STDC_HEADERS is defined, then autoconf has verified that the ctype   macros don't need to be guarded with references to isascii. ...   Defining isascii to 1 should let any compiler worth its salt   eliminate the && through constant folding."  */#if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))#define ISASCII(c) 1#else#define ISASCII(c) isascii(c)#endif#ifdef isblank#define ISBLANK(c) (ISASCII (c) && isblank (c))#else#define ISBLANK(c) ((c) == ' ' || (c) == '\t')#endif#ifdef isgraph#define ISGRAPH(c) (ISASCII (c) && isgraph (c))#else#define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))#endif#define ISPRINT(c) (ISASCII (c) && isprint (c))#define ISDIGIT(c) (ISASCII (c) && isdigit (c))#define ISALNUM(c) (ISASCII (c) && isalnum (c))#define ISALPHA(c) (ISASCII (c) && isalpha (c))#define ISCNTRL(c) (ISASCII (c) && iscntrl (c))#define ISLOWER(c) (ISASCII (c) && islower (c))#define ISPUNCT(c) (ISASCII (c) && ispunct (c))#define ISSPACE(c) (ISASCII (c) && isspace (c))#define ISUPPER(c) (ISASCII (c) && isupper (c))#define ISXDIGIT(c) (ISASCII (c) && isxdigit (c))#ifndef NULL#define NULL (void *)0#endif/* We remove any previous definition of `SIGN_EXTEND_CHAR',   since ours (we hope) works properly with all combinations of   machines, compilers, `char' and `unsigned char' argument types.   (Per Bothner suggested the basic approach.)  */#undef SIGN_EXTEND_CHAR#if __STDC__#define SIGN_EXTEND_CHAR(c) ((signed char) (c))#else  /* not __STDC__ *//* As in Harbison and Steele.  */#define SIGN_EXTEND_CHAR(c) ((((unsigned char) (c)) ^ 128) - 128)#endif/* Should we use malloc or alloca?  If REGEX_MALLOC is not defined, we   use `alloca' instead of `malloc'.  This is because using malloc in   re_search* or re_match* could cause memory leaks when C-g is used in   Emacs; also, malloc is slower and causes storage fragmentation.  On   the other hand, malloc is more portable, and easier to debug.        Because we sometimes use alloca, some routines have to be macros,   not functions -- `alloca'-allocated space disappears at the end of the   function it is called in.  */#ifdef REGEX_MALLOC#define REGEX_ALLOCATE malloc#define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)#define REGEX_FREE free#else /* not REGEX_MALLOC  *//* Emacs already defines alloca, sometimes.  */#ifndef alloca/* Make alloca work the best possible way.  */#ifdef __GNUC__#define alloca __builtin_alloca#else /* not __GNUC__ */#if HAVE_ALLOCA_H#include <alloca.h>#else /* not __GNUC__ or HAVE_ALLOCA_H */#ifndef _AIX /* Already did AIX, up at the top.  */char *alloca ();#endif /* not _AIX */#endif /* not HAVE_ALLOCA_H */ #endif /* not __GNUC__ */#endif /* not alloca */#define REGEX_ALLOCATE alloca/* Assumes a `char *destination' variable.  */#define REGEX_REALLOCATE(source, osize, nsize)				\  (destination = (char *) alloca (nsize),				\   bcopy (source, destination, osize),					\   destination)/* No need to do anything to free, after alloca.  */#define REGEX_FREE(arg) ((void)0) /* Do nothing!  But inhibit gcc warning.  */#endif /* not REGEX_MALLOC *//* Define how to allocate the failure stack.  */#ifdef REL_ALLOC#define REGEX_ALLOCATE_STACK(size)				\  r_alloc (&failure_stack_ptr, (size))#define REGEX_REALLOCATE_STACK(source, osize, nsize)		\  r_re_alloc (&failure_stack_ptr, (nsize))#define REGEX_FREE_STACK(ptr)					\  r_alloc_free (&failure_stack_ptr)#else /* not REL_ALLOC */#ifdef REGEX_MALLOC#define REGEX_ALLOCATE_STACK malloc#define REGEX_REALLOCATE_STACK(source, osize, nsize) realloc (source, nsize)#define REGEX_FREE_STACK free#else /* not REGEX_MALLOC */#define REGEX_ALLOCATE_STACK alloca#define REGEX_REALLOCATE_STACK(source, osize, nsize)			\   REGEX_REALLOCATE (source, osize, nsize)/* No need to explicitly free anything.  */#define REGEX_FREE_STACK(arg)#endif /* not REGEX_MALLOC */#endif /* not REL_ALLOC *//* True if `size1' is non-NULL and PTR is pointing anywhere inside   `string1' or just past its end.  This works if PTR is NULL, which is   a good thing.  */#define FIRST_STRING_P(ptr) 					\  (size1 && string1 <= (ptr) && (ptr) <= string1 + size1)/* (Re)Allocate N items of type T using malloc, or fail.  */#define TALLOC(n, t) ((t *) malloc ((n) * sizeof (t)))#define RETALLOC(addr, n, t) ((addr) = (t *) realloc (addr, (n) * sizeof (t)))#define RETALLOC_IF(addr, n, t) \  if (addr) RETALLOC((addr), (n), t); else (addr) = TALLOC ((n), t)#define REGEX_TALLOC(n, t) ((t *) REGEX_ALLOCATE ((n) * sizeof (t)))#define BYTEWIDTH 8 /* In bits.  */#define STREQ(s1, s2) ((strcmp (s1, s2) == 0))#undef MAX#undef MIN#define MAX(a, b) ((a) > (b) ? (a) : (b))#define MIN(a, b) ((a) < (b) ? (a) : (b))typedef char boolean;#define false 0#define true 1static int re_match_2_internal ();/* These are the command codes that appear in compiled regular   expressions.  Some opcodes are followed by argument bytes.  A   command code can specify any interpretation whatsoever for its   arguments.  Zero bytes may appear in the compiled regular expression.  */typedef enum{  no_op = 0,  /* Succeed right away--no more backtracking.  */  succeed,	   /* Followed by one byte giving n, then by n literal bytes.  */  exactn,	   /* Matches any (more or less) character.  */  anychar,	   /* Matches any one char belonging to specified set.  First		 following byte is number of bitmap bytes.  Then come bytes		 for a bitmap saying which chars are in.  Bits in each byte		 are ordered low-bit-first.  A character is in the set if its		 bit is 1.  A character too large to have a bit in the map is		 automatically not in the set.  */  charset,	   /* Same parameters as charset, but match any character that is		 not one of those specified.  */  charset_not,	   /* Start remembering the text that is matched, for storing in a		 register.  Followed by one byte with the register number, in		 the range 0 to one less than the pattern buffer's re_nsub		 field.  Then followed by one byte with the number of groups		 inner to this one.  (This last has to be part of the		 start_memory only because we need it in the on_failure_jump		 of re_match_2.)  */  start_memory,	   /* Stop remembering the text that is matched and store it in a		 memory register.  Followed by one byte with the register		 number, in the range 0 to one less than `re_nsub' in the		 pattern buffer, and one byte with the number of inner groups,		 just like `start_memory'.  (We need the number of inner		 groups here because we don't have any easy way of finding the		 corresponding start_memory when we're at a stop_memory.)  */  stop_memory,	   /* Match a duplicate of something remembered. Followed by one		 byte containing the register number.  */  duplicate,	   /* Fail unless at beginning of line.  */  begline,	   /* Fail unless at end of line.  */  endline,	   /* Succeeds if at beginning of buffer (if emacs) or at beginning		 of string to be matched (if not).  */  begbuf,	   /* Analogously, for end of buffer/string.  */  endbuf, 	   /* Followed by two byte relative address to which to jump.  */  jump, 	/* Same as jump, but marks the end of an alternative.  */  jump_past_alt,	   /* Followed by two-byte relative address of place to resume at		 in case of failure.  */  on_failure_jump,		   /* Like on_failure_jump, but pushes a placeholder instead of the		 current string position when executed.  */  on_failure_keep_string_jump,  	   /* Throw away latest failure point and then jump to following		 two-byte relative address.  */  pop_failure_jump,	   /* Change to pop_failure_jump if know won't have to backtrack to		 match; otherwise change to jump.  This is used to jump		 back to the beginning of a repeat.  If what follows this jump		 clearly won't match what the repeat does, such that we can be		 sure that there is no use backtracking out of repetitions		 already matched, then we change it to a pop_failure_jump.		 Followed by two-byte address.  */  maybe_pop_jump,	   /* Jump to following two-byte address, and push a dummy failure		 point. This failure point will be thrown away if an attempt		 is made to use it for a failure.  A `+' construct makes this		 before the first repeat.  Also used as an intermediary kind		 of jump when compiling an alternative.  */  dummy_failure_jump,	/* Push a dummy failure point and continue.  Used at the end of	   alternatives.  */  push_dummy_failure,	   /* Followed by two-byte relative address and two-byte number n.		 After matching N times, jump to the address upon failure.  */  succeed_n,	   /* Followed by two-byte relative address, and two-byte number n.		 Jump to the address N times, then fail.  */  jump_n,	   /* Set the following two-byte relative address to the		 subsequent two-byte number.  The address *includes* the two		 bytes of number.  */  set_number_at,  wordchar,	/* Matches any word-constituent character.  */  notwordchar,	/* Matches any char that is not a word-constituent.  */  wordbeg,	/* Succeeds if at word beginning.  */  wordend,	/* Succeeds if at word end.  */  wordbound,	/* Succeeds if at a word boundary.  */  notwordbound	/* Succeeds if not at a word boundary.  */#ifdef emacs  ,before_dot,	/* Succeeds if before point.  */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美性受极品xxxx喷水| 亚洲一区av在线| 亚洲欧美一区二区三区孕妇| 午夜精品一区二区三区三上悠亚| 国产精品一二三区| 欧美午夜一区二区三区 | 91麻豆精品国产91久久久使用方法 | 免费观看久久久4p| 93久久精品日日躁夜夜躁欧美| 日韩一区二区三区在线| 亚洲黄色片在线观看| 成人av高清在线| 久久久久久久性| 狠狠狠色丁香婷婷综合激情| 欧美另类z0zxhd电影| 亚洲精品视频免费观看| 99re热这里只有精品视频| 久久影视一区二区| 亚洲一区二区3| 色香色香欲天天天影视综合网| 国产亚洲精品7777| 国内精品国产成人国产三级粉色 | 中国色在线观看另类| 麻豆精品在线视频| 日韩欧美中文字幕制服| 日韩av午夜在线观看| 欧美欧美午夜aⅴ在线观看| 亚洲黄色av一区| 91国在线观看| 亚洲欧美日韩系列| 日本道精品一区二区三区| 中文字幕一区三区| 99精品视频中文字幕| 国产精品成人免费精品自在线观看| 国产高清精品在线| 久久影院视频免费| 成人一二三区视频| 亚洲女同ⅹxx女同tv| 欧美伊人久久大香线蕉综合69 | 欧美日韩日日摸| 香蕉成人啪国产精品视频综合网 | 久久精品国产澳门| 日韩欧美高清在线| 久久99国产乱子伦精品免费| 精品va天堂亚洲国产| 国产资源在线一区| 中文字幕在线观看一区二区| 91丝袜呻吟高潮美腿白嫩在线观看| 中文字幕日韩av资源站| 色婷婷精品大在线视频| 亚洲成人1区2区| 日韩免费电影一区| 成人高清免费观看| 一区二区三区高清| 884aa四虎影成人精品一区| 久久99精品国产麻豆婷婷洗澡| 久久精品欧美一区二区三区不卡 | 国产精品一二三在| 成人欧美一区二区三区白人 | 欧美性受xxxx| 久久精品国产成人一区二区三区| 国产精品视频免费看| 欧美性感一区二区三区| 国产在线精品不卡| 亚洲精选一二三| 日韩视频免费观看高清完整版在线观看 | 极品尤物av久久免费看| 中文字幕一区二区三区在线播放| 欧美在线不卡一区| 国产激情一区二区三区四区| 亚洲在线观看免费视频| 国产亚洲欧美一区在线观看| 在线观看免费视频综合| 高清免费成人av| 日本亚洲免费观看| 一区二区三区中文字幕在线观看| 日韩你懂的在线播放| 91丝袜美女网| 精品一区二区三区在线观看国产| 亚洲伦理在线精品| 国产日韩欧美精品在线| 欧美一级电影网站| 91免费版在线| 国产精品一区在线观看你懂的| 一级做a爱片久久| 国产日韩欧美一区二区三区综合| 在线播放视频一区| 99久久国产综合色|国产精品| 日韩电影在线一区| 日韩毛片在线免费观看| 2021国产精品久久精品| 欧美区在线观看| 91片在线免费观看| 国产精品69久久久久水密桃 | 亚洲美女屁股眼交| 久久久久久久久久久久电影 | 日本特黄久久久高潮| 亚洲女同一区二区| 中文字幕在线免费不卡| 久久久综合精品| 欧美大片一区二区| 欧美精品色综合| 欧美中文字幕一二三区视频| 99精品久久99久久久久| 风间由美一区二区av101| 国产一区二区按摩在线观看| 蜜桃av一区二区| 日韩av在线免费观看不卡| 夜夜夜精品看看| 一区二区三区视频在线看| 国产精品国产三级国产三级人妇| 久久久久久亚洲综合| 精品国产免费人成电影在线观看四季| 欧美日韩在线亚洲一区蜜芽| 色呦呦国产精品| 91在线一区二区三区| 色一情一伦一子一伦一区| 色呦呦国产精品| 在线影视一区二区三区| 91社区在线播放| 欧美专区亚洲专区| 欧美日韩性生活| 717成人午夜免费福利电影| 欧美福利一区二区| 91精品国产综合久久久久久漫画 | 亚洲视频在线一区观看| 亚洲另类春色校园小说| 亚洲午夜精品一区二区三区他趣| 一区二区三国产精华液| 亚洲观看高清完整版在线观看| 亚洲综合一二区| 蜜桃在线一区二区三区| 精品一区二区在线播放| 国产91精品在线观看| 91在线一区二区三区| 欧美日韩在线电影| 日韩欧美一区二区久久婷婷| 国产午夜亚洲精品羞羞网站| 中文字幕不卡在线播放| 亚洲激情男女视频| 日本aⅴ精品一区二区三区| 国产乱国产乱300精品| 99久久久精品| 欧美男同性恋视频网站| 久久青草国产手机看片福利盒子| 国产精品人成在线观看免费| 亚洲综合一区二区精品导航| 激情丁香综合五月| 91久久精品一区二区| 日韩三区在线观看| 亚洲视频一区在线| 精品亚洲aⅴ乱码一区二区三区| 99久久国产综合精品女不卡| 日韩欧美在线影院| 亚洲欧美一区二区三区极速播放 | 免费观看成人av| 99国产精品视频免费观看| 91精品在线一区二区| 国产精品电影院| 韩国视频一区二区| 91视频免费看| 精品av综合导航| 偷拍一区二区三区| 不卡的av电影| 日韩精品影音先锋| 一区二区三区精品在线观看| 精彩视频一区二区三区| 欧美日韩午夜精品| 国产精品日日摸夜夜摸av| 天堂一区二区在线| 97久久超碰精品国产| 精品国产乱码久久| 亚洲高清免费观看高清完整版在线观看| 久久99久国产精品黄毛片色诱| 色呦呦日韩精品| 亚洲国产精品成人久久综合一区| 日韩精品成人一区二区在线| 91老师国产黑色丝袜在线| 日韩女优av电影| 亚洲妇熟xx妇色黄| 91久久香蕉国产日韩欧美9色| 日本一区二区三区电影| 裸体一区二区三区| 欧美日韩黄色一区二区| 一个色在线综合| 色呦呦国产精品| 亚洲婷婷综合色高清在线| 不卡区在线中文字幕| 久久久久亚洲综合| 久久国产福利国产秒拍| 欧美精品1区2区| 性感美女久久精品| 在线播放国产精品二区一二区四区| 亚洲欧美自拍偷拍| 99久久亚洲一区二区三区青草| 久久欧美一区二区| 国产一区二区精品久久99| 精品成人a区在线观看| 韩日精品视频一区| 国产夜色精品一区二区av|