regfronts.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * regcomp and regexec - front ends to re_ routines
  3.  *
  4.  * Mostly for implementation of backward-compatibility kludges.  Note
  5.  * that these routines exist ONLY in char versions.
  6.  *
  7.  * Copyright (c) 1998, 1999 Henry Spencer.  All rights reserved.
  8.  * 
  9.  * Development of this software was funded, in part, by Cray Research Inc.,
  10.  * UUNET Communications Services Inc., Sun Microsystems Inc., and Scriptics
  11.  * Corporation, none of whom are responsible for the results.  The author
  12.  * thanks all of them. 
  13.  * 
  14.  * Redistribution and use in source and binary forms -- with or without
  15.  * modification -- are permitted for any purpose, provided that
  16.  * redistributions in source form retain this entire copyright notice and
  17.  * indicate the origin and nature of any modifications.
  18.  * 
  19.  * I'd appreciate being given credit for this package in the documentation
  20.  * of software which uses it, but that is not a requirement.
  21.  * 
  22.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
  23.  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  24.  * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
  25.  * HENRY SPENCER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  26.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  27.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
  28.  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  29.  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
  30.  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  31.  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32.  *
  33.  */
  34. #include "regguts.h"
  35. /*
  36.  - regcomp - compile regular expression
  37.  */
  38. int
  39. regcomp(re, str, flags)
  40. regex_t *re;
  41. CONST char *str;
  42. int flags;
  43. {
  44. size_t len;
  45. int f = flags;
  46. if (f&REG_PEND) {
  47. len = re->re_endp - str;
  48. f &= ~REG_PEND;
  49. } else
  50. len = strlen(str);
  51. return re_comp(re, str, len, f);
  52. }
  53. /*
  54.  - regexec - execute regular expression
  55.  */
  56. int
  57. regexec(re, str, nmatch, pmatch, flags)
  58. regex_t *re;
  59. CONST char *str;
  60. size_t nmatch;
  61. regmatch_t pmatch[];
  62. int flags;
  63. {
  64. CONST char *start;
  65. size_t len;
  66. int f = flags;
  67. if (f&REG_STARTEND) {
  68. start = str + pmatch[0].rm_so;
  69. len = pmatch[0].rm_eo - pmatch[0].rm_so;
  70. f &= ~REG_STARTEND;
  71. } else {
  72. start = str;
  73. len = strlen(str);
  74. }
  75. return re_exec(re, start, len, nmatch, pmatch, f);
  76. }