Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-05-18 08:30:09

0001 #ifndef ONIGGNU_H
0002 #define ONIGGNU_H
0003 /**********************************************************************
0004   oniggnu.h - Oniguruma (regular expression library)
0005 **********************************************************************/
0006 /*-
0007  * Copyright (c) 2002-2019  K.Kosako
0008  * All rights reserved.
0009  *
0010  * Redistribution and use in source and binary forms, with or without
0011  * modification, are permitted provided that the following conditions
0012  * are met:
0013  * 1. Redistributions of source code must retain the above copyright
0014  *    notice, this list of conditions and the following disclaimer.
0015  * 2. Redistributions in binary form must reproduce the above copyright
0016  *    notice, this list of conditions and the following disclaimer in the
0017  *    documentation and/or other materials provided with the distribution.
0018  *
0019  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
0020  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
0021  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
0022  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
0023  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
0024  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
0025  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
0026  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
0027  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
0028  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
0029  * SUCH DAMAGE.
0030  */
0031 
0032 #include "oniguruma.h"
0033 
0034 #ifdef __cplusplus
0035 extern "C" {
0036 #endif
0037 
0038 enum {
0039   RE_MBCTYPE_ASCII = 0,
0040   RE_MBCTYPE_EUC   = 1,
0041   RE_MBCTYPE_SJIS  = 2,
0042   RE_MBCTYPE_UTF8  = 3
0043 };
0044 
0045 /* GNU regex options */
0046 #ifndef RE_NREGS
0047 #define RE_NREGS                ONIG_NREGION
0048 #endif
0049 
0050 #define RE_OPTION_IGNORECASE         ONIG_OPTION_IGNORECASE
0051 #define RE_OPTION_EXTENDED           ONIG_OPTION_EXTEND
0052 #define RE_OPTION_MULTILINE          ONIG_OPTION_MULTILINE
0053 #define RE_OPTION_SINGLELINE         ONIG_OPTION_SINGLELINE
0054 #define RE_OPTION_LONGEST            ONIG_OPTION_FIND_LONGEST
0055 #define RE_OPTION_POSIXLINE         (RE_OPTION_MULTILINE|RE_OPTION_SINGLELINE)
0056 #define RE_OPTION_FIND_NOT_EMPTY     ONIG_OPTION_FIND_NOT_EMPTY
0057 #define RE_OPTION_NEGATE_SINGLELINE  ONIG_OPTION_NEGATE_SINGLELINE
0058 #define RE_OPTION_DONT_CAPTURE_GROUP ONIG_OPTION_DONT_CAPTURE_GROUP
0059 #define RE_OPTION_CAPTURE_GROUP      ONIG_OPTION_CAPTURE_GROUP
0060 
0061 
0062 ONIG_EXTERN
0063 void re_mbcinit P_((int));
0064 ONIG_EXTERN
0065 int re_compile_pattern P_((const char*, int, struct re_pattern_buffer*, char* err_buf));
0066 ONIG_EXTERN
0067 int re_recompile_pattern P_((const char*, int, struct re_pattern_buffer*, char* err_buf));
0068 ONIG_EXTERN
0069 void re_free_pattern P_((struct re_pattern_buffer*));
0070 ONIG_EXTERN
0071 int re_adjust_startpos P_((struct re_pattern_buffer*, const char*, int, int, int));
0072 ONIG_EXTERN
0073 int re_search P_((struct re_pattern_buffer*, const char*, int, int, int, struct re_registers*));
0074 ONIG_EXTERN
0075 int re_match P_((struct re_pattern_buffer*, const char *, int, int, struct re_registers*));
0076 ONIG_EXTERN
0077 void re_set_casetable P_((const char*));
0078 ONIG_EXTERN
0079 void re_free_registers P_((struct re_registers*));
0080 ONIG_EXTERN
0081 int re_alloc_pattern P_((struct re_pattern_buffer**));  /* added */
0082 
0083 #ifdef __cplusplus
0084 }
0085 #endif
0086 
0087 #endif /* ONIGGNU_H */