]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/ascii.c
MdeModulePkg: Regular expression protocol
[mirror_edk2.git] / MdeModulePkg / Universal / RegularExpressionDxe / Oniguruma / enc / ascii.c
diff --git a/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/ascii.c b/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/enc/ascii.c
new file mode 100644 (file)
index 0000000..25afc98
--- /dev/null
@@ -0,0 +1,58 @@
+/**********************************************************************\r
+  ascii.c -  Oniguruma (regular expression library)\r
+**********************************************************************/\r
+/*-\r
+ * Copyright (c) 2002-2006  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>\r
+ * All rights reserved.\r
+ *\r
+ * Redistribution and use in source and binary forms, with or without\r
+ * modification, are permitted provided that the following conditions\r
+ * are met:\r
+ * 1. Redistributions of source code must retain the above copyright\r
+ *    notice, this list of conditions and the following disclaimer.\r
+ * 2. Redistributions in binary form must reproduce the above copyright\r
+ *    notice, this list of conditions and the following disclaimer in the\r
+ *    documentation and/or other materials provided with the distribution.\r
+ *\r
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND\r
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\r
+ * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\r
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\r
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\r
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\r
+ * SUCH DAMAGE.\r
+ */\r
+\r
+#include "regenc.h"\r
+\r
+static int\r
+ascii_is_code_ctype(OnigCodePoint code, unsigned int ctype)\r
+{\r
+  if (code < 128)\r
+    return ONIGENC_IS_ASCII_CODE_CTYPE(code, ctype);\r
+  else\r
+    return FALSE;\r
+}\r
+\r
+OnigEncodingType OnigEncodingASCII = {\r
+  onigenc_single_byte_mbc_enc_len,\r
+  "US-ASCII",  /* name */\r
+  1,           /* max byte length */\r
+  1,           /* min byte length */\r
+  onigenc_is_mbc_newline_0x0a,\r
+  onigenc_single_byte_mbc_to_code,\r
+  onigenc_single_byte_code_to_mbclen,\r
+  onigenc_single_byte_code_to_mbc,\r
+  onigenc_ascii_mbc_case_fold,\r
+  onigenc_ascii_apply_all_case_fold,\r
+  onigenc_ascii_get_case_fold_codes_by_str,\r
+  onigenc_minimum_property_name_to_ctype,\r
+  ascii_is_code_ctype,\r
+  onigenc_not_support_get_ctype_code_range,\r
+  onigenc_single_byte_left_adjust_char_head,\r
+  onigenc_always_true_is_allowed_reverse_match\r
+};\r