rugged 0.28.5 → 0.99.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (379) hide show
  1. checksums.yaml +4 -4
  2. data/ext/rugged/extconf.rb +3 -1
  3. data/ext/rugged/rugged.c +35 -31
  4. data/ext/rugged/rugged.h +13 -0
  5. data/ext/rugged/rugged_blob.c +11 -9
  6. data/ext/rugged/rugged_commit.c +17 -15
  7. data/ext/rugged/rugged_diff.c +4 -26
  8. data/ext/rugged/rugged_index.c +4 -2
  9. data/ext/rugged/rugged_note.c +5 -3
  10. data/ext/rugged/rugged_object.c +57 -10
  11. data/ext/rugged/rugged_rebase.c +3 -1
  12. data/ext/rugged/rugged_remote.c +0 -6
  13. data/ext/rugged/rugged_repo.c +222 -17
  14. data/ext/rugged/rugged_tag.c +8 -6
  15. data/ext/rugged/rugged_tree.c +18 -16
  16. data/lib/rugged/version.rb +1 -1
  17. data/vendor/libgit2/CMakeLists.txt +38 -19
  18. data/vendor/libgit2/COPYING +28 -0
  19. data/vendor/libgit2/cmake/Modules/EnableWarnings.cmake +5 -1
  20. data/vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake +2 -2
  21. data/vendor/libgit2/cmake/Modules/FindGSSAPI.cmake +1 -1
  22. data/vendor/libgit2/cmake/Modules/FindGSSFramework.cmake +28 -0
  23. data/vendor/libgit2/cmake/Modules/FindPCRE.cmake +38 -0
  24. data/vendor/libgit2/cmake/Modules/FindPCRE2.cmake +37 -0
  25. data/vendor/libgit2/cmake/Modules/FindSecurity.cmake +2 -2
  26. data/vendor/libgit2/cmake/Modules/FindStatNsec.cmake +6 -0
  27. data/vendor/libgit2/cmake/Modules/PkgBuildConfig.cmake +110 -0
  28. data/vendor/libgit2/cmake/Modules/SelectGSSAPI.cmake +53 -0
  29. data/vendor/libgit2/cmake/Modules/SelectHTTPSBackend.cmake +124 -0
  30. data/vendor/libgit2/cmake/Modules/SelectHashes.cmake +66 -0
  31. data/vendor/libgit2/deps/http-parser/http_parser.c +11 -6
  32. data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +21 -0
  33. data/vendor/libgit2/deps/ntlmclient/compat.h +33 -0
  34. data/vendor/libgit2/deps/ntlmclient/crypt.h +64 -0
  35. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +120 -0
  36. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +18 -0
  37. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +145 -0
  38. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +18 -0
  39. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +130 -0
  40. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +21 -0
  41. data/vendor/libgit2/deps/ntlmclient/ntlm.c +1422 -0
  42. data/vendor/libgit2/deps/ntlmclient/ntlm.h +174 -0
  43. data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +320 -0
  44. data/vendor/libgit2/deps/ntlmclient/unicode.h +36 -0
  45. data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +445 -0
  46. data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +201 -0
  47. data/vendor/libgit2/deps/ntlmclient/utf8.h +1257 -0
  48. data/vendor/libgit2/deps/ntlmclient/util.c +21 -0
  49. data/vendor/libgit2/deps/ntlmclient/util.h +14 -0
  50. data/vendor/libgit2/deps/pcre/CMakeLists.txt +140 -0
  51. data/vendor/libgit2/deps/pcre/COPYING +5 -0
  52. data/vendor/libgit2/deps/pcre/cmake/COPYING-CMAKE-SCRIPTS +22 -0
  53. data/vendor/libgit2/deps/pcre/cmake/FindEditline.cmake +17 -0
  54. data/vendor/libgit2/deps/pcre/cmake/FindPackageHandleStandardArgs.cmake +58 -0
  55. data/vendor/libgit2/deps/pcre/cmake/FindReadline.cmake +29 -0
  56. data/vendor/libgit2/deps/pcre/config.h.in +57 -0
  57. data/vendor/libgit2/deps/pcre/pcre.h +641 -0
  58. data/vendor/libgit2/deps/pcre/pcre_byte_order.c +319 -0
  59. data/vendor/libgit2/deps/pcre/pcre_chartables.c +198 -0
  60. data/vendor/libgit2/deps/pcre/pcre_compile.c +9800 -0
  61. data/vendor/libgit2/deps/pcre/pcre_config.c +190 -0
  62. data/vendor/libgit2/deps/pcre/pcre_dfa_exec.c +3676 -0
  63. data/vendor/libgit2/deps/pcre/pcre_exec.c +7173 -0
  64. data/vendor/libgit2/deps/pcre/pcre_fullinfo.c +245 -0
  65. data/vendor/libgit2/deps/pcre/pcre_get.c +669 -0
  66. data/vendor/libgit2/deps/pcre/pcre_globals.c +86 -0
  67. data/vendor/libgit2/deps/pcre/pcre_internal.h +2787 -0
  68. data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +11913 -0
  69. data/vendor/libgit2/deps/pcre/pcre_maketables.c +156 -0
  70. data/vendor/libgit2/deps/pcre/pcre_newline.c +210 -0
  71. data/vendor/libgit2/deps/pcre/pcre_ord2utf8.c +94 -0
  72. data/vendor/libgit2/deps/pcre/pcre_printint.c +834 -0
  73. data/vendor/libgit2/deps/pcre/pcre_refcount.c +92 -0
  74. data/vendor/libgit2/deps/pcre/pcre_string_utils.c +211 -0
  75. data/vendor/libgit2/deps/pcre/pcre_study.c +1686 -0
  76. data/vendor/libgit2/deps/pcre/pcre_tables.c +727 -0
  77. data/vendor/libgit2/deps/pcre/pcre_ucd.c +3644 -0
  78. data/vendor/libgit2/deps/pcre/pcre_valid_utf8.c +301 -0
  79. data/vendor/libgit2/deps/pcre/pcre_version.c +98 -0
  80. data/vendor/libgit2/deps/pcre/pcre_xclass.c +268 -0
  81. data/vendor/libgit2/deps/pcre/pcreposix.c +421 -0
  82. data/vendor/libgit2/deps/pcre/pcreposix.h +117 -0
  83. data/vendor/libgit2/deps/pcre/ucp.h +224 -0
  84. data/vendor/libgit2/deps/zlib/adler32.c +0 -7
  85. data/vendor/libgit2/deps/zlib/crc32.c +0 -7
  86. data/vendor/libgit2/include/git2.h +2 -0
  87. data/vendor/libgit2/include/git2/apply.h +22 -2
  88. data/vendor/libgit2/include/git2/attr.h +23 -13
  89. data/vendor/libgit2/include/git2/blame.h +2 -2
  90. data/vendor/libgit2/include/git2/blob.h +44 -12
  91. data/vendor/libgit2/include/git2/branch.h +74 -57
  92. data/vendor/libgit2/include/git2/buffer.h +20 -14
  93. data/vendor/libgit2/include/git2/cert.h +135 -0
  94. data/vendor/libgit2/include/git2/checkout.h +46 -14
  95. data/vendor/libgit2/include/git2/cherrypick.h +3 -3
  96. data/vendor/libgit2/include/git2/clone.h +2 -2
  97. data/vendor/libgit2/include/git2/commit.h +23 -1
  98. data/vendor/libgit2/include/git2/common.h +15 -6
  99. data/vendor/libgit2/include/git2/config.h +12 -12
  100. data/vendor/libgit2/include/git2/cred_helpers.h +4 -42
  101. data/vendor/libgit2/include/git2/credential.h +314 -0
  102. data/vendor/libgit2/include/git2/credential_helpers.h +52 -0
  103. data/vendor/libgit2/include/git2/deprecated.h +314 -3
  104. data/vendor/libgit2/include/git2/describe.h +4 -4
  105. data/vendor/libgit2/include/git2/diff.h +16 -14
  106. data/vendor/libgit2/include/git2/errors.h +4 -2
  107. data/vendor/libgit2/include/git2/filter.h +8 -0
  108. data/vendor/libgit2/include/git2/index.h +2 -1
  109. data/vendor/libgit2/include/git2/indexer.h +48 -4
  110. data/vendor/libgit2/include/git2/merge.h +6 -10
  111. data/vendor/libgit2/include/git2/net.h +0 -5
  112. data/vendor/libgit2/include/git2/object.h +2 -14
  113. data/vendor/libgit2/include/git2/odb.h +3 -2
  114. data/vendor/libgit2/include/git2/odb_backend.h +5 -4
  115. data/vendor/libgit2/include/git2/oid.h +11 -6
  116. data/vendor/libgit2/include/git2/pack.h +12 -1
  117. data/vendor/libgit2/include/git2/proxy.h +6 -4
  118. data/vendor/libgit2/include/git2/rebase.h +46 -2
  119. data/vendor/libgit2/include/git2/refs.h +19 -0
  120. data/vendor/libgit2/include/git2/remote.h +40 -15
  121. data/vendor/libgit2/include/git2/repository.h +24 -2
  122. data/vendor/libgit2/include/git2/revert.h +1 -1
  123. data/vendor/libgit2/include/git2/revwalk.h +7 -3
  124. data/vendor/libgit2/include/git2/stash.h +4 -4
  125. data/vendor/libgit2/include/git2/status.h +25 -16
  126. data/vendor/libgit2/include/git2/submodule.h +20 -3
  127. data/vendor/libgit2/include/git2/sys/alloc.h +9 -9
  128. data/vendor/libgit2/include/git2/sys/cred.h +15 -0
  129. data/vendor/libgit2/include/git2/sys/credential.h +90 -0
  130. data/vendor/libgit2/include/git2/sys/index.h +4 -2
  131. data/vendor/libgit2/include/git2/sys/mempack.h +2 -1
  132. data/vendor/libgit2/include/git2/sys/merge.h +1 -1
  133. data/vendor/libgit2/include/git2/sys/odb_backend.h +48 -4
  134. data/vendor/libgit2/include/git2/sys/refdb_backend.h +57 -21
  135. data/vendor/libgit2/include/git2/sys/repository.h +17 -6
  136. data/vendor/libgit2/include/git2/sys/transport.h +4 -4
  137. data/vendor/libgit2/include/git2/tag.h +11 -2
  138. data/vendor/libgit2/include/git2/trace.h +2 -2
  139. data/vendor/libgit2/include/git2/transport.h +11 -340
  140. data/vendor/libgit2/include/git2/tree.h +5 -3
  141. data/vendor/libgit2/include/git2/types.h +4 -89
  142. data/vendor/libgit2/include/git2/version.h +4 -4
  143. data/vendor/libgit2/include/git2/worktree.h +5 -5
  144. data/vendor/libgit2/src/CMakeLists.txt +89 -224
  145. data/vendor/libgit2/src/alloc.c +2 -14
  146. data/vendor/libgit2/src/{stdalloc.c → allocators/stdalloc.c} +3 -4
  147. data/vendor/libgit2/src/{stdalloc.h → allocators/stdalloc.h} +4 -4
  148. data/vendor/libgit2/src/allocators/win32_crtdbg.c +118 -0
  149. data/vendor/libgit2/src/{transports/cred.h → allocators/win32_crtdbg.h} +5 -4
  150. data/vendor/libgit2/src/apply.c +31 -15
  151. data/vendor/libgit2/src/attr.c +70 -64
  152. data/vendor/libgit2/src/attr_file.c +189 -96
  153. data/vendor/libgit2/src/attr_file.h +9 -9
  154. data/vendor/libgit2/src/attrcache.c +47 -47
  155. data/vendor/libgit2/src/attrcache.h +2 -1
  156. data/vendor/libgit2/src/blame.c +17 -5
  157. data/vendor/libgit2/src/blame.h +1 -1
  158. data/vendor/libgit2/src/blame_git.c +21 -7
  159. data/vendor/libgit2/src/blob.c +81 -17
  160. data/vendor/libgit2/src/blob.h +2 -2
  161. data/vendor/libgit2/src/branch.c +60 -32
  162. data/vendor/libgit2/src/buffer.c +5 -0
  163. data/vendor/libgit2/src/buffer.h +1 -0
  164. data/vendor/libgit2/src/cache.c +26 -33
  165. data/vendor/libgit2/src/cache.h +1 -1
  166. data/vendor/libgit2/src/cc-compat.h +5 -0
  167. data/vendor/libgit2/src/checkout.c +26 -16
  168. data/vendor/libgit2/src/cherrypick.c +7 -1
  169. data/vendor/libgit2/src/clone.c +29 -7
  170. data/vendor/libgit2/src/clone.h +4 -0
  171. data/vendor/libgit2/src/commit.c +70 -22
  172. data/vendor/libgit2/src/commit.h +6 -0
  173. data/vendor/libgit2/src/commit_list.c +28 -76
  174. data/vendor/libgit2/src/commit_list.h +2 -2
  175. data/vendor/libgit2/src/common.h +3 -75
  176. data/vendor/libgit2/src/config.c +31 -40
  177. data/vendor/libgit2/src/config.h +7 -6
  178. data/vendor/libgit2/src/config_backend.h +12 -0
  179. data/vendor/libgit2/src/config_cache.c +39 -39
  180. data/vendor/libgit2/src/config_entries.c +69 -99
  181. data/vendor/libgit2/src/config_entries.h +1 -0
  182. data/vendor/libgit2/src/config_file.c +337 -380
  183. data/vendor/libgit2/src/config_mem.c +12 -16
  184. data/vendor/libgit2/src/config_parse.c +49 -29
  185. data/vendor/libgit2/src/config_parse.h +13 -12
  186. data/vendor/libgit2/src/config_snapshot.c +206 -0
  187. data/vendor/libgit2/src/crlf.c +14 -14
  188. data/vendor/libgit2/src/describe.c +21 -20
  189. data/vendor/libgit2/src/diff.c +43 -66
  190. data/vendor/libgit2/src/diff.h +4 -3
  191. data/vendor/libgit2/src/diff_driver.c +37 -38
  192. data/vendor/libgit2/src/diff_file.c +12 -10
  193. data/vendor/libgit2/src/diff_file.h +2 -2
  194. data/vendor/libgit2/src/diff_generate.c +26 -26
  195. data/vendor/libgit2/src/diff_generate.h +2 -2
  196. data/vendor/libgit2/src/diff_parse.c +1 -1
  197. data/vendor/libgit2/src/diff_print.c +25 -13
  198. data/vendor/libgit2/src/diff_stats.c +1 -1
  199. data/vendor/libgit2/src/diff_tform.c +11 -11
  200. data/vendor/libgit2/src/errors.c +21 -25
  201. data/vendor/libgit2/src/errors.h +81 -0
  202. data/vendor/libgit2/src/features.h.in +9 -2
  203. data/vendor/libgit2/src/fetch.c +7 -2
  204. data/vendor/libgit2/src/fetchhead.c +9 -9
  205. data/vendor/libgit2/src/filebuf.c +1 -1
  206. data/vendor/libgit2/src/filebuf.h +1 -1
  207. data/vendor/libgit2/src/filter.c +16 -8
  208. data/vendor/libgit2/src/{fileops.c → futils.c} +20 -17
  209. data/vendor/libgit2/src/{fileops.h → futils.h} +5 -5
  210. data/vendor/libgit2/src/hash.c +61 -0
  211. data/vendor/libgit2/src/hash.h +19 -21
  212. data/vendor/libgit2/src/hash/sha1.h +38 -0
  213. data/vendor/libgit2/src/hash/{hash_collisiondetect.h → sha1/collisiondetect.c} +14 -17
  214. data/vendor/libgit2/src/hash/sha1/collisiondetect.h +19 -0
  215. data/vendor/libgit2/src/hash/{hash_common_crypto.h → sha1/common_crypto.c} +15 -19
  216. data/vendor/libgit2/src/hash/sha1/common_crypto.h +19 -0
  217. data/vendor/libgit2/src/hash/{hash_generic.c → sha1/generic.c} +22 -10
  218. data/vendor/libgit2/src/hash/{hash_generic.h → sha1/generic.h} +4 -14
  219. data/vendor/libgit2/src/hash/{hash_mbedtls.c → sha1/mbedtls.c} +15 -7
  220. data/vendor/libgit2/src/hash/{hash_mbedtls.h → sha1/mbedtls.h} +6 -11
  221. data/vendor/libgit2/src/hash/{hash_openssl.h → sha1/openssl.c} +14 -18
  222. data/vendor/libgit2/src/hash/sha1/openssl.h +19 -0
  223. data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.c +14 -3
  224. data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.h +0 -0
  225. data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.c +0 -0
  226. data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.h +0 -0
  227. data/vendor/libgit2/src/hash/{hash_win32.c → sha1/win32.c} +34 -24
  228. data/vendor/libgit2/src/hash/{hash_win32.h → sha1/win32.h} +6 -19
  229. data/vendor/libgit2/src/hashsig.c +1 -1
  230. data/vendor/libgit2/src/idxmap.c +91 -65
  231. data/vendor/libgit2/src/idxmap.h +151 -15
  232. data/vendor/libgit2/src/ignore.c +26 -35
  233. data/vendor/libgit2/src/index.c +103 -81
  234. data/vendor/libgit2/src/index.h +1 -1
  235. data/vendor/libgit2/src/indexer.c +69 -70
  236. data/vendor/libgit2/src/integer.h +11 -4
  237. data/vendor/libgit2/src/iterator.c +32 -28
  238. data/vendor/libgit2/src/iterator.h +8 -8
  239. data/vendor/libgit2/src/map.h +1 -1
  240. data/vendor/libgit2/src/merge.c +55 -41
  241. data/vendor/libgit2/src/merge.h +2 -2
  242. data/vendor/libgit2/src/merge_driver.c +5 -5
  243. data/vendor/libgit2/src/merge_file.c +1 -1
  244. data/vendor/libgit2/src/mwindow.c +18 -23
  245. data/vendor/libgit2/src/mwindow.h +4 -4
  246. data/vendor/libgit2/src/net.c +411 -0
  247. data/vendor/libgit2/src/net.h +57 -0
  248. data/vendor/libgit2/src/netops.c +6 -222
  249. data/vendor/libgit2/src/netops.h +1 -37
  250. data/vendor/libgit2/src/notes.c +2 -2
  251. data/vendor/libgit2/src/object.c +3 -3
  252. data/vendor/libgit2/src/object.h +2 -0
  253. data/vendor/libgit2/src/odb.c +41 -23
  254. data/vendor/libgit2/src/odb.h +3 -2
  255. data/vendor/libgit2/src/odb_loose.c +17 -10
  256. data/vendor/libgit2/src/odb_mempack.c +13 -24
  257. data/vendor/libgit2/src/odb_pack.c +4 -4
  258. data/vendor/libgit2/src/offmap.c +43 -55
  259. data/vendor/libgit2/src/offmap.h +102 -24
  260. data/vendor/libgit2/src/oid.c +19 -8
  261. data/vendor/libgit2/src/oidmap.c +39 -57
  262. data/vendor/libgit2/src/oidmap.h +99 -19
  263. data/vendor/libgit2/src/pack-objects.c +25 -32
  264. data/vendor/libgit2/src/pack-objects.h +1 -1
  265. data/vendor/libgit2/src/pack.c +97 -129
  266. data/vendor/libgit2/src/pack.h +15 -18
  267. data/vendor/libgit2/src/parse.c +10 -0
  268. data/vendor/libgit2/src/parse.h +3 -3
  269. data/vendor/libgit2/src/patch.c +1 -1
  270. data/vendor/libgit2/src/patch_generate.c +1 -1
  271. data/vendor/libgit2/src/patch_parse.c +30 -9
  272. data/vendor/libgit2/src/path.c +43 -6
  273. data/vendor/libgit2/src/path.h +2 -0
  274. data/vendor/libgit2/src/pathspec.c +14 -14
  275. data/vendor/libgit2/src/pool.c +26 -22
  276. data/vendor/libgit2/src/pool.h +7 -7
  277. data/vendor/libgit2/src/posix.c +7 -7
  278. data/vendor/libgit2/src/posix.h +12 -1
  279. data/vendor/libgit2/src/proxy.c +7 -2
  280. data/vendor/libgit2/src/push.c +10 -5
  281. data/vendor/libgit2/src/reader.c +2 -2
  282. data/vendor/libgit2/src/rebase.c +87 -28
  283. data/vendor/libgit2/src/refdb.c +12 -0
  284. data/vendor/libgit2/src/refdb_fs.c +215 -169
  285. data/vendor/libgit2/src/reflog.c +11 -13
  286. data/vendor/libgit2/src/refs.c +34 -23
  287. data/vendor/libgit2/src/refs.h +8 -1
  288. data/vendor/libgit2/src/refspec.c +9 -16
  289. data/vendor/libgit2/src/regexp.c +221 -0
  290. data/vendor/libgit2/src/regexp.h +97 -0
  291. data/vendor/libgit2/src/remote.c +57 -55
  292. data/vendor/libgit2/src/remote.h +2 -2
  293. data/vendor/libgit2/src/repository.c +120 -103
  294. data/vendor/libgit2/src/repository.h +49 -40
  295. data/vendor/libgit2/src/revert.c +6 -1
  296. data/vendor/libgit2/src/revparse.c +18 -19
  297. data/vendor/libgit2/src/revwalk.c +71 -33
  298. data/vendor/libgit2/src/revwalk.h +20 -0
  299. data/vendor/libgit2/src/settings.c +13 -1
  300. data/vendor/libgit2/src/sortedcache.c +12 -26
  301. data/vendor/libgit2/src/sortedcache.h +1 -1
  302. data/vendor/libgit2/src/stash.c +45 -65
  303. data/vendor/libgit2/src/status.c +17 -11
  304. data/vendor/libgit2/src/streams/openssl.c +53 -1
  305. data/vendor/libgit2/src/streams/socket.c +2 -2
  306. data/vendor/libgit2/src/strmap.c +37 -84
  307. data/vendor/libgit2/src/strmap.h +105 -33
  308. data/vendor/libgit2/src/submodule.c +151 -126
  309. data/vendor/libgit2/src/submodule.h +1 -1
  310. data/vendor/libgit2/src/tag.c +10 -2
  311. data/vendor/libgit2/src/trace.c +1 -1
  312. data/vendor/libgit2/src/trace.h +3 -3
  313. data/vendor/libgit2/src/trailer.c +46 -32
  314. data/vendor/libgit2/src/transaction.c +3 -8
  315. data/vendor/libgit2/src/transports/auth.c +16 -15
  316. data/vendor/libgit2/src/transports/auth.h +18 -11
  317. data/vendor/libgit2/src/transports/auth_negotiate.c +64 -33
  318. data/vendor/libgit2/src/transports/auth_negotiate.h +2 -2
  319. data/vendor/libgit2/src/transports/auth_ntlm.c +223 -0
  320. data/vendor/libgit2/src/transports/auth_ntlm.h +38 -0
  321. data/vendor/libgit2/src/transports/credential.c +476 -0
  322. data/vendor/libgit2/src/transports/{cred_helpers.c → credential_helpers.c} +21 -8
  323. data/vendor/libgit2/src/transports/git.c +11 -16
  324. data/vendor/libgit2/src/transports/http.c +488 -1248
  325. data/vendor/libgit2/src/transports/http.h +4 -1
  326. data/vendor/libgit2/src/transports/httpclient.c +1526 -0
  327. data/vendor/libgit2/src/transports/httpclient.h +190 -0
  328. data/vendor/libgit2/src/transports/local.c +10 -10
  329. data/vendor/libgit2/src/transports/smart.c +19 -19
  330. data/vendor/libgit2/src/transports/smart.h +3 -3
  331. data/vendor/libgit2/src/transports/smart_protocol.c +40 -64
  332. data/vendor/libgit2/src/transports/ssh.c +77 -59
  333. data/vendor/libgit2/src/transports/winhttp.c +266 -241
  334. data/vendor/libgit2/src/tree-cache.c +14 -7
  335. data/vendor/libgit2/src/tree.c +16 -26
  336. data/vendor/libgit2/src/unix/map.c +1 -1
  337. data/vendor/libgit2/src/unix/posix.h +2 -12
  338. data/vendor/libgit2/src/userdiff.h +3 -1
  339. data/vendor/libgit2/src/util.c +51 -53
  340. data/vendor/libgit2/src/util.h +16 -21
  341. data/vendor/libgit2/src/wildmatch.c +320 -0
  342. data/vendor/libgit2/src/wildmatch.h +23 -0
  343. data/vendor/libgit2/src/win32/map.c +3 -5
  344. data/vendor/libgit2/src/win32/path_w32.c +12 -2
  345. data/vendor/libgit2/src/win32/path_w32.h +0 -29
  346. data/vendor/libgit2/src/win32/posix.h +1 -4
  347. data/vendor/libgit2/src/win32/posix_w32.c +48 -5
  348. data/vendor/libgit2/src/win32/precompiled.h +0 -2
  349. data/vendor/libgit2/src/win32/thread.c +5 -5
  350. data/vendor/libgit2/src/win32/w32_buffer.c +7 -3
  351. data/vendor/libgit2/src/win32/w32_common.h +39 -0
  352. data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +0 -93
  353. data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -2
  354. data/vendor/libgit2/src/win32/w32_stack.c +4 -9
  355. data/vendor/libgit2/src/win32/w32_stack.h +3 -3
  356. data/vendor/libgit2/src/win32/w32_util.c +31 -0
  357. data/vendor/libgit2/src/win32/w32_util.h +6 -32
  358. data/vendor/libgit2/src/worktree.c +36 -22
  359. data/vendor/libgit2/src/xdiff/xdiffi.c +1 -1
  360. data/vendor/libgit2/src/xdiff/xmerge.c +12 -0
  361. data/vendor/libgit2/src/xdiff/xpatience.c +3 -0
  362. data/vendor/libgit2/src/zstream.c +5 -0
  363. data/vendor/libgit2/src/zstream.h +1 -0
  364. metadata +108 -38
  365. data/vendor/libgit2/deps/regex/CMakeLists.txt +0 -2
  366. data/vendor/libgit2/deps/regex/COPYING +0 -502
  367. data/vendor/libgit2/deps/regex/config.h +0 -7
  368. data/vendor/libgit2/deps/regex/regcomp.c +0 -3857
  369. data/vendor/libgit2/deps/regex/regex.c +0 -92
  370. data/vendor/libgit2/deps/regex/regex.h +0 -582
  371. data/vendor/libgit2/deps/regex/regex_internal.c +0 -1744
  372. data/vendor/libgit2/deps/regex/regex_internal.h +0 -819
  373. data/vendor/libgit2/deps/regex/regexec.c +0 -4369
  374. data/vendor/libgit2/include/git2/inttypes.h +0 -309
  375. data/vendor/libgit2/include/git2/sys/time.h +0 -31
  376. data/vendor/libgit2/libgit2.pc.in +0 -13
  377. data/vendor/libgit2/src/fnmatch.c +0 -248
  378. data/vendor/libgit2/src/fnmatch.h +0 -48
  379. data/vendor/libgit2/src/transports/cred.c +0 -390
@@ -0,0 +1,727 @@
1
+ /*************************************************
2
+ * Perl-Compatible Regular Expressions *
3
+ *************************************************/
4
+
5
+ /* PCRE is a library of functions to support regular expressions whose syntax
6
+ and semantics are as close as possible to those of the Perl 5 language.
7
+
8
+ Written by Philip Hazel
9
+ Copyright (c) 1997-2017 University of Cambridge
10
+
11
+ -----------------------------------------------------------------------------
12
+ Redistribution and use in source and binary forms, with or without
13
+ modification, are permitted provided that the following conditions are met:
14
+
15
+ * Redistributions of source code must retain the above copyright notice,
16
+ this list of conditions and the following disclaimer.
17
+
18
+ * Redistributions in binary form must reproduce the above copyright
19
+ notice, this list of conditions and the following disclaimer in the
20
+ documentation and/or other materials provided with the distribution.
21
+
22
+ * Neither the name of the University of Cambridge nor the names of its
23
+ contributors may be used to endorse or promote products derived from
24
+ this software without specific prior written permission.
25
+
26
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
30
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36
+ POSSIBILITY OF SUCH DAMAGE.
37
+ -----------------------------------------------------------------------------
38
+ */
39
+
40
+ #ifndef PCRE_INCLUDED
41
+
42
+ /* This module contains some fixed tables that are used by more than one of the
43
+ PCRE code modules. The tables are also #included by the pcretest program, which
44
+ uses macros to change their names from _pcre_xxx to xxxx, thereby avoiding name
45
+ clashes with the library. */
46
+
47
+
48
+ #ifdef HAVE_CONFIG_H
49
+ #include "config.h"
50
+ #endif
51
+
52
+ #include "pcre_internal.h"
53
+
54
+ #endif /* PCRE_INCLUDED */
55
+
56
+ /* Table of sizes for the fixed-length opcodes. It's defined in a macro so that
57
+ the definition is next to the definition of the opcodes in pcre_internal.h. */
58
+
59
+ const pcre_uint8 PRIV(OP_lengths)[] = { OP_LENGTHS };
60
+
61
+ /* Tables of horizontal and vertical whitespace characters, suitable for
62
+ adding to classes. */
63
+
64
+ const pcre_uint32 PRIV(hspace_list)[] = { HSPACE_LIST };
65
+ const pcre_uint32 PRIV(vspace_list)[] = { VSPACE_LIST };
66
+
67
+
68
+
69
+ /*************************************************
70
+ * Tables for UTF-8 support *
71
+ *************************************************/
72
+
73
+ /* These are the breakpoints for different numbers of bytes in a UTF-8
74
+ character. */
75
+
76
+ #if (defined SUPPORT_UTF && defined COMPILE_PCRE8) \
77
+ || (defined PCRE_INCLUDED && (defined SUPPORT_PCRE16 || defined SUPPORT_PCRE32))
78
+
79
+ /* These tables are also required by pcretest in 16- or 32-bit mode. */
80
+
81
+ const int PRIV(utf8_table1)[] =
82
+ { 0x7f, 0x7ff, 0xffff, 0x1fffff, 0x3ffffff, 0x7fffffff};
83
+
84
+ const int PRIV(utf8_table1_size) = sizeof(PRIV(utf8_table1)) / sizeof(int);
85
+
86
+ /* These are the indicator bits and the mask for the data bits to set in the
87
+ first byte of a character, indexed by the number of additional bytes. */
88
+
89
+ const int PRIV(utf8_table2)[] = { 0, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc};
90
+ const int PRIV(utf8_table3)[] = { 0xff, 0x1f, 0x0f, 0x07, 0x03, 0x01};
91
+
92
+ /* Table of the number of extra bytes, indexed by the first byte masked with
93
+ 0x3f. The highest number for a valid UTF-8 first byte is in fact 0x3d. */
94
+
95
+ const pcre_uint8 PRIV(utf8_table4)[] = {
96
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
97
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
98
+ 2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,
99
+ 3,3,3,3,3,3,3,3,4,4,4,4,5,5,5,5 };
100
+
101
+ #endif /* (SUPPORT_UTF && COMPILE_PCRE8) || (PCRE_INCLUDED && SUPPORT_PCRE[16|32])*/
102
+
103
+ #ifdef SUPPORT_UTF
104
+
105
+ /* Table to translate from particular type value to the general value. */
106
+
107
+ const pcre_uint32 PRIV(ucp_gentype)[] = {
108
+ ucp_C, ucp_C, ucp_C, ucp_C, ucp_C, /* Cc, Cf, Cn, Co, Cs */
109
+ ucp_L, ucp_L, ucp_L, ucp_L, ucp_L, /* Ll, Lu, Lm, Lo, Lt */
110
+ ucp_M, ucp_M, ucp_M, /* Mc, Me, Mn */
111
+ ucp_N, ucp_N, ucp_N, /* Nd, Nl, No */
112
+ ucp_P, ucp_P, ucp_P, ucp_P, ucp_P, /* Pc, Pd, Pe, Pf, Pi */
113
+ ucp_P, ucp_P, /* Ps, Po */
114
+ ucp_S, ucp_S, ucp_S, ucp_S, /* Sc, Sk, Sm, So */
115
+ ucp_Z, ucp_Z, ucp_Z /* Zl, Zp, Zs */
116
+ };
117
+
118
+ /* This table encodes the rules for finding the end of an extended grapheme
119
+ cluster. Every code point has a grapheme break property which is one of the
120
+ ucp_gbXX values defined in ucp.h. The 2-dimensional table is indexed by the
121
+ properties of two adjacent code points. The left property selects a word from
122
+ the table, and the right property selects a bit from that word like this:
123
+
124
+ ucp_gbtable[left-property] & (1 << right-property)
125
+
126
+ The value is non-zero if a grapheme break is NOT permitted between the relevant
127
+ two code points. The breaking rules are as follows:
128
+
129
+ 1. Break at the start and end of text (pretty obviously).
130
+
131
+ 2. Do not break between a CR and LF; otherwise, break before and after
132
+ controls.
133
+
134
+ 3. Do not break Hangul syllable sequences, the rules for which are:
135
+
136
+ L may be followed by L, V, LV or LVT
137
+ LV or V may be followed by V or T
138
+ LVT or T may be followed by T
139
+
140
+ 4. Do not break before extending characters.
141
+
142
+ The next two rules are only for extended grapheme clusters (but that's what we
143
+ are implementing).
144
+
145
+ 5. Do not break before SpacingMarks.
146
+
147
+ 6. Do not break after Prepend characters.
148
+
149
+ 7. Otherwise, break everywhere.
150
+ */
151
+
152
+ const pcre_uint32 PRIV(ucp_gbtable[]) = {
153
+ (1<<ucp_gbLF), /* 0 CR */
154
+ 0, /* 1 LF */
155
+ 0, /* 2 Control */
156
+ (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark), /* 3 Extend */
157
+ (1<<ucp_gbExtend)|(1<<ucp_gbPrepend)| /* 4 Prepend */
158
+ (1<<ucp_gbSpacingMark)|(1<<ucp_gbL)|
159
+ (1<<ucp_gbV)|(1<<ucp_gbT)|(1<<ucp_gbLV)|
160
+ (1<<ucp_gbLVT)|(1<<ucp_gbOther),
161
+
162
+ (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark), /* 5 SpacingMark */
163
+ (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbL)| /* 6 L */
164
+ (1<<ucp_gbV)|(1<<ucp_gbLV)|(1<<ucp_gbLVT),
165
+
166
+ (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbV)| /* 7 V */
167
+ (1<<ucp_gbT),
168
+
169
+ (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbT), /* 8 T */
170
+ (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbV)| /* 9 LV */
171
+ (1<<ucp_gbT),
172
+
173
+ (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark)|(1<<ucp_gbT), /* 10 LVT */
174
+ (1<<ucp_gbRegionalIndicator), /* 11 RegionalIndicator */
175
+ (1<<ucp_gbExtend)|(1<<ucp_gbSpacingMark) /* 12 Other */
176
+ };
177
+
178
+ #ifdef SUPPORT_JIT
179
+ /* This table reverses PRIV(ucp_gentype). We can save the cost
180
+ of a memory load. */
181
+
182
+ const int PRIV(ucp_typerange)[] = {
183
+ ucp_Cc, ucp_Cs,
184
+ ucp_Ll, ucp_Lu,
185
+ ucp_Mc, ucp_Mn,
186
+ ucp_Nd, ucp_No,
187
+ ucp_Pc, ucp_Ps,
188
+ ucp_Sc, ucp_So,
189
+ ucp_Zl, ucp_Zs,
190
+ };
191
+ #endif /* SUPPORT_JIT */
192
+
193
+ /* The pcre_utt[] table below translates Unicode property names into type and
194
+ code values. It is searched by binary chop, so must be in collating sequence of
195
+ name. Originally, the table contained pointers to the name strings in the first
196
+ field of each entry. However, that leads to a large number of relocations when
197
+ a shared library is dynamically loaded. A significant reduction is made by
198
+ putting all the names into a single, large string and then using offsets in the
199
+ table itself. Maintenance is more error-prone, but frequent changes to this
200
+ data are unlikely.
201
+
202
+ July 2008: There is now a script called maint/GenerateUtt.py that can be used
203
+ to generate this data automatically instead of maintaining it by hand.
204
+
205
+ The script was updated in March 2009 to generate a new EBCDIC-compliant
206
+ version. Like all other character and string literals that are compared against
207
+ the regular expression pattern, we must use STR_ macros instead of literal
208
+ strings to make sure that UTF-8 support works on EBCDIC platforms. */
209
+
210
+ #define STRING_Any0 STR_A STR_n STR_y "\0"
211
+ #define STRING_Arabic0 STR_A STR_r STR_a STR_b STR_i STR_c "\0"
212
+ #define STRING_Armenian0 STR_A STR_r STR_m STR_e STR_n STR_i STR_a STR_n "\0"
213
+ #define STRING_Avestan0 STR_A STR_v STR_e STR_s STR_t STR_a STR_n "\0"
214
+ #define STRING_Balinese0 STR_B STR_a STR_l STR_i STR_n STR_e STR_s STR_e "\0"
215
+ #define STRING_Bamum0 STR_B STR_a STR_m STR_u STR_m "\0"
216
+ #define STRING_Bassa_Vah0 STR_B STR_a STR_s STR_s STR_a STR_UNDERSCORE STR_V STR_a STR_h "\0"
217
+ #define STRING_Batak0 STR_B STR_a STR_t STR_a STR_k "\0"
218
+ #define STRING_Bengali0 STR_B STR_e STR_n STR_g STR_a STR_l STR_i "\0"
219
+ #define STRING_Bopomofo0 STR_B STR_o STR_p STR_o STR_m STR_o STR_f STR_o "\0"
220
+ #define STRING_Brahmi0 STR_B STR_r STR_a STR_h STR_m STR_i "\0"
221
+ #define STRING_Braille0 STR_B STR_r STR_a STR_i STR_l STR_l STR_e "\0"
222
+ #define STRING_Buginese0 STR_B STR_u STR_g STR_i STR_n STR_e STR_s STR_e "\0"
223
+ #define STRING_Buhid0 STR_B STR_u STR_h STR_i STR_d "\0"
224
+ #define STRING_C0 STR_C "\0"
225
+ #define STRING_Canadian_Aboriginal0 STR_C STR_a STR_n STR_a STR_d STR_i STR_a STR_n STR_UNDERSCORE STR_A STR_b STR_o STR_r STR_i STR_g STR_i STR_n STR_a STR_l "\0"
226
+ #define STRING_Carian0 STR_C STR_a STR_r STR_i STR_a STR_n "\0"
227
+ #define STRING_Caucasian_Albanian0 STR_C STR_a STR_u STR_c STR_a STR_s STR_i STR_a STR_n STR_UNDERSCORE STR_A STR_l STR_b STR_a STR_n STR_i STR_a STR_n "\0"
228
+ #define STRING_Cc0 STR_C STR_c "\0"
229
+ #define STRING_Cf0 STR_C STR_f "\0"
230
+ #define STRING_Chakma0 STR_C STR_h STR_a STR_k STR_m STR_a "\0"
231
+ #define STRING_Cham0 STR_C STR_h STR_a STR_m "\0"
232
+ #define STRING_Cherokee0 STR_C STR_h STR_e STR_r STR_o STR_k STR_e STR_e "\0"
233
+ #define STRING_Cn0 STR_C STR_n "\0"
234
+ #define STRING_Co0 STR_C STR_o "\0"
235
+ #define STRING_Common0 STR_C STR_o STR_m STR_m STR_o STR_n "\0"
236
+ #define STRING_Coptic0 STR_C STR_o STR_p STR_t STR_i STR_c "\0"
237
+ #define STRING_Cs0 STR_C STR_s "\0"
238
+ #define STRING_Cuneiform0 STR_C STR_u STR_n STR_e STR_i STR_f STR_o STR_r STR_m "\0"
239
+ #define STRING_Cypriot0 STR_C STR_y STR_p STR_r STR_i STR_o STR_t "\0"
240
+ #define STRING_Cyrillic0 STR_C STR_y STR_r STR_i STR_l STR_l STR_i STR_c "\0"
241
+ #define STRING_Deseret0 STR_D STR_e STR_s STR_e STR_r STR_e STR_t "\0"
242
+ #define STRING_Devanagari0 STR_D STR_e STR_v STR_a STR_n STR_a STR_g STR_a STR_r STR_i "\0"
243
+ #define STRING_Duployan0 STR_D STR_u STR_p STR_l STR_o STR_y STR_a STR_n "\0"
244
+ #define STRING_Egyptian_Hieroglyphs0 STR_E STR_g STR_y STR_p STR_t STR_i STR_a STR_n STR_UNDERSCORE STR_H STR_i STR_e STR_r STR_o STR_g STR_l STR_y STR_p STR_h STR_s "\0"
245
+ #define STRING_Elbasan0 STR_E STR_l STR_b STR_a STR_s STR_a STR_n "\0"
246
+ #define STRING_Ethiopic0 STR_E STR_t STR_h STR_i STR_o STR_p STR_i STR_c "\0"
247
+ #define STRING_Georgian0 STR_G STR_e STR_o STR_r STR_g STR_i STR_a STR_n "\0"
248
+ #define STRING_Glagolitic0 STR_G STR_l STR_a STR_g STR_o STR_l STR_i STR_t STR_i STR_c "\0"
249
+ #define STRING_Gothic0 STR_G STR_o STR_t STR_h STR_i STR_c "\0"
250
+ #define STRING_Grantha0 STR_G STR_r STR_a STR_n STR_t STR_h STR_a "\0"
251
+ #define STRING_Greek0 STR_G STR_r STR_e STR_e STR_k "\0"
252
+ #define STRING_Gujarati0 STR_G STR_u STR_j STR_a STR_r STR_a STR_t STR_i "\0"
253
+ #define STRING_Gurmukhi0 STR_G STR_u STR_r STR_m STR_u STR_k STR_h STR_i "\0"
254
+ #define STRING_Han0 STR_H STR_a STR_n "\0"
255
+ #define STRING_Hangul0 STR_H STR_a STR_n STR_g STR_u STR_l "\0"
256
+ #define STRING_Hanunoo0 STR_H STR_a STR_n STR_u STR_n STR_o STR_o "\0"
257
+ #define STRING_Hebrew0 STR_H STR_e STR_b STR_r STR_e STR_w "\0"
258
+ #define STRING_Hiragana0 STR_H STR_i STR_r STR_a STR_g STR_a STR_n STR_a "\0"
259
+ #define STRING_Imperial_Aramaic0 STR_I STR_m STR_p STR_e STR_r STR_i STR_a STR_l STR_UNDERSCORE STR_A STR_r STR_a STR_m STR_a STR_i STR_c "\0"
260
+ #define STRING_Inherited0 STR_I STR_n STR_h STR_e STR_r STR_i STR_t STR_e STR_d "\0"
261
+ #define STRING_Inscriptional_Pahlavi0 STR_I STR_n STR_s STR_c STR_r STR_i STR_p STR_t STR_i STR_o STR_n STR_a STR_l STR_UNDERSCORE STR_P STR_a STR_h STR_l STR_a STR_v STR_i "\0"
262
+ #define STRING_Inscriptional_Parthian0 STR_I STR_n STR_s STR_c STR_r STR_i STR_p STR_t STR_i STR_o STR_n STR_a STR_l STR_UNDERSCORE STR_P STR_a STR_r STR_t STR_h STR_i STR_a STR_n "\0"
263
+ #define STRING_Javanese0 STR_J STR_a STR_v STR_a STR_n STR_e STR_s STR_e "\0"
264
+ #define STRING_Kaithi0 STR_K STR_a STR_i STR_t STR_h STR_i "\0"
265
+ #define STRING_Kannada0 STR_K STR_a STR_n STR_n STR_a STR_d STR_a "\0"
266
+ #define STRING_Katakana0 STR_K STR_a STR_t STR_a STR_k STR_a STR_n STR_a "\0"
267
+ #define STRING_Kayah_Li0 STR_K STR_a STR_y STR_a STR_h STR_UNDERSCORE STR_L STR_i "\0"
268
+ #define STRING_Kharoshthi0 STR_K STR_h STR_a STR_r STR_o STR_s STR_h STR_t STR_h STR_i "\0"
269
+ #define STRING_Khmer0 STR_K STR_h STR_m STR_e STR_r "\0"
270
+ #define STRING_Khojki0 STR_K STR_h STR_o STR_j STR_k STR_i "\0"
271
+ #define STRING_Khudawadi0 STR_K STR_h STR_u STR_d STR_a STR_w STR_a STR_d STR_i "\0"
272
+ #define STRING_L0 STR_L "\0"
273
+ #define STRING_L_AMPERSAND0 STR_L STR_AMPERSAND "\0"
274
+ #define STRING_Lao0 STR_L STR_a STR_o "\0"
275
+ #define STRING_Latin0 STR_L STR_a STR_t STR_i STR_n "\0"
276
+ #define STRING_Lepcha0 STR_L STR_e STR_p STR_c STR_h STR_a "\0"
277
+ #define STRING_Limbu0 STR_L STR_i STR_m STR_b STR_u "\0"
278
+ #define STRING_Linear_A0 STR_L STR_i STR_n STR_e STR_a STR_r STR_UNDERSCORE STR_A "\0"
279
+ #define STRING_Linear_B0 STR_L STR_i STR_n STR_e STR_a STR_r STR_UNDERSCORE STR_B "\0"
280
+ #define STRING_Lisu0 STR_L STR_i STR_s STR_u "\0"
281
+ #define STRING_Ll0 STR_L STR_l "\0"
282
+ #define STRING_Lm0 STR_L STR_m "\0"
283
+ #define STRING_Lo0 STR_L STR_o "\0"
284
+ #define STRING_Lt0 STR_L STR_t "\0"
285
+ #define STRING_Lu0 STR_L STR_u "\0"
286
+ #define STRING_Lycian0 STR_L STR_y STR_c STR_i STR_a STR_n "\0"
287
+ #define STRING_Lydian0 STR_L STR_y STR_d STR_i STR_a STR_n "\0"
288
+ #define STRING_M0 STR_M "\0"
289
+ #define STRING_Mahajani0 STR_M STR_a STR_h STR_a STR_j STR_a STR_n STR_i "\0"
290
+ #define STRING_Malayalam0 STR_M STR_a STR_l STR_a STR_y STR_a STR_l STR_a STR_m "\0"
291
+ #define STRING_Mandaic0 STR_M STR_a STR_n STR_d STR_a STR_i STR_c "\0"
292
+ #define STRING_Manichaean0 STR_M STR_a STR_n STR_i STR_c STR_h STR_a STR_e STR_a STR_n "\0"
293
+ #define STRING_Mc0 STR_M STR_c "\0"
294
+ #define STRING_Me0 STR_M STR_e "\0"
295
+ #define STRING_Meetei_Mayek0 STR_M STR_e STR_e STR_t STR_e STR_i STR_UNDERSCORE STR_M STR_a STR_y STR_e STR_k "\0"
296
+ #define STRING_Mende_Kikakui0 STR_M STR_e STR_n STR_d STR_e STR_UNDERSCORE STR_K STR_i STR_k STR_a STR_k STR_u STR_i "\0"
297
+ #define STRING_Meroitic_Cursive0 STR_M STR_e STR_r STR_o STR_i STR_t STR_i STR_c STR_UNDERSCORE STR_C STR_u STR_r STR_s STR_i STR_v STR_e "\0"
298
+ #define STRING_Meroitic_Hieroglyphs0 STR_M STR_e STR_r STR_o STR_i STR_t STR_i STR_c STR_UNDERSCORE STR_H STR_i STR_e STR_r STR_o STR_g STR_l STR_y STR_p STR_h STR_s "\0"
299
+ #define STRING_Miao0 STR_M STR_i STR_a STR_o "\0"
300
+ #define STRING_Mn0 STR_M STR_n "\0"
301
+ #define STRING_Modi0 STR_M STR_o STR_d STR_i "\0"
302
+ #define STRING_Mongolian0 STR_M STR_o STR_n STR_g STR_o STR_l STR_i STR_a STR_n "\0"
303
+ #define STRING_Mro0 STR_M STR_r STR_o "\0"
304
+ #define STRING_Myanmar0 STR_M STR_y STR_a STR_n STR_m STR_a STR_r "\0"
305
+ #define STRING_N0 STR_N "\0"
306
+ #define STRING_Nabataean0 STR_N STR_a STR_b STR_a STR_t STR_a STR_e STR_a STR_n "\0"
307
+ #define STRING_Nd0 STR_N STR_d "\0"
308
+ #define STRING_New_Tai_Lue0 STR_N STR_e STR_w STR_UNDERSCORE STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_u STR_e "\0"
309
+ #define STRING_Nko0 STR_N STR_k STR_o "\0"
310
+ #define STRING_Nl0 STR_N STR_l "\0"
311
+ #define STRING_No0 STR_N STR_o "\0"
312
+ #define STRING_Ogham0 STR_O STR_g STR_h STR_a STR_m "\0"
313
+ #define STRING_Ol_Chiki0 STR_O STR_l STR_UNDERSCORE STR_C STR_h STR_i STR_k STR_i "\0"
314
+ #define STRING_Old_Italic0 STR_O STR_l STR_d STR_UNDERSCORE STR_I STR_t STR_a STR_l STR_i STR_c "\0"
315
+ #define STRING_Old_North_Arabian0 STR_O STR_l STR_d STR_UNDERSCORE STR_N STR_o STR_r STR_t STR_h STR_UNDERSCORE STR_A STR_r STR_a STR_b STR_i STR_a STR_n "\0"
316
+ #define STRING_Old_Permic0 STR_O STR_l STR_d STR_UNDERSCORE STR_P STR_e STR_r STR_m STR_i STR_c "\0"
317
+ #define STRING_Old_Persian0 STR_O STR_l STR_d STR_UNDERSCORE STR_P STR_e STR_r STR_s STR_i STR_a STR_n "\0"
318
+ #define STRING_Old_South_Arabian0 STR_O STR_l STR_d STR_UNDERSCORE STR_S STR_o STR_u STR_t STR_h STR_UNDERSCORE STR_A STR_r STR_a STR_b STR_i STR_a STR_n "\0"
319
+ #define STRING_Old_Turkic0 STR_O STR_l STR_d STR_UNDERSCORE STR_T STR_u STR_r STR_k STR_i STR_c "\0"
320
+ #define STRING_Oriya0 STR_O STR_r STR_i STR_y STR_a "\0"
321
+ #define STRING_Osmanya0 STR_O STR_s STR_m STR_a STR_n STR_y STR_a "\0"
322
+ #define STRING_P0 STR_P "\0"
323
+ #define STRING_Pahawh_Hmong0 STR_P STR_a STR_h STR_a STR_w STR_h STR_UNDERSCORE STR_H STR_m STR_o STR_n STR_g "\0"
324
+ #define STRING_Palmyrene0 STR_P STR_a STR_l STR_m STR_y STR_r STR_e STR_n STR_e "\0"
325
+ #define STRING_Pau_Cin_Hau0 STR_P STR_a STR_u STR_UNDERSCORE STR_C STR_i STR_n STR_UNDERSCORE STR_H STR_a STR_u "\0"
326
+ #define STRING_Pc0 STR_P STR_c "\0"
327
+ #define STRING_Pd0 STR_P STR_d "\0"
328
+ #define STRING_Pe0 STR_P STR_e "\0"
329
+ #define STRING_Pf0 STR_P STR_f "\0"
330
+ #define STRING_Phags_Pa0 STR_P STR_h STR_a STR_g STR_s STR_UNDERSCORE STR_P STR_a "\0"
331
+ #define STRING_Phoenician0 STR_P STR_h STR_o STR_e STR_n STR_i STR_c STR_i STR_a STR_n "\0"
332
+ #define STRING_Pi0 STR_P STR_i "\0"
333
+ #define STRING_Po0 STR_P STR_o "\0"
334
+ #define STRING_Ps0 STR_P STR_s "\0"
335
+ #define STRING_Psalter_Pahlavi0 STR_P STR_s STR_a STR_l STR_t STR_e STR_r STR_UNDERSCORE STR_P STR_a STR_h STR_l STR_a STR_v STR_i "\0"
336
+ #define STRING_Rejang0 STR_R STR_e STR_j STR_a STR_n STR_g "\0"
337
+ #define STRING_Runic0 STR_R STR_u STR_n STR_i STR_c "\0"
338
+ #define STRING_S0 STR_S "\0"
339
+ #define STRING_Samaritan0 STR_S STR_a STR_m STR_a STR_r STR_i STR_t STR_a STR_n "\0"
340
+ #define STRING_Saurashtra0 STR_S STR_a STR_u STR_r STR_a STR_s STR_h STR_t STR_r STR_a "\0"
341
+ #define STRING_Sc0 STR_S STR_c "\0"
342
+ #define STRING_Sharada0 STR_S STR_h STR_a STR_r STR_a STR_d STR_a "\0"
343
+ #define STRING_Shavian0 STR_S STR_h STR_a STR_v STR_i STR_a STR_n "\0"
344
+ #define STRING_Siddham0 STR_S STR_i STR_d STR_d STR_h STR_a STR_m "\0"
345
+ #define STRING_Sinhala0 STR_S STR_i STR_n STR_h STR_a STR_l STR_a "\0"
346
+ #define STRING_Sk0 STR_S STR_k "\0"
347
+ #define STRING_Sm0 STR_S STR_m "\0"
348
+ #define STRING_So0 STR_S STR_o "\0"
349
+ #define STRING_Sora_Sompeng0 STR_S STR_o STR_r STR_a STR_UNDERSCORE STR_S STR_o STR_m STR_p STR_e STR_n STR_g "\0"
350
+ #define STRING_Sundanese0 STR_S STR_u STR_n STR_d STR_a STR_n STR_e STR_s STR_e "\0"
351
+ #define STRING_Syloti_Nagri0 STR_S STR_y STR_l STR_o STR_t STR_i STR_UNDERSCORE STR_N STR_a STR_g STR_r STR_i "\0"
352
+ #define STRING_Syriac0 STR_S STR_y STR_r STR_i STR_a STR_c "\0"
353
+ #define STRING_Tagalog0 STR_T STR_a STR_g STR_a STR_l STR_o STR_g "\0"
354
+ #define STRING_Tagbanwa0 STR_T STR_a STR_g STR_b STR_a STR_n STR_w STR_a "\0"
355
+ #define STRING_Tai_Le0 STR_T STR_a STR_i STR_UNDERSCORE STR_L STR_e "\0"
356
+ #define STRING_Tai_Tham0 STR_T STR_a STR_i STR_UNDERSCORE STR_T STR_h STR_a STR_m "\0"
357
+ #define STRING_Tai_Viet0 STR_T STR_a STR_i STR_UNDERSCORE STR_V STR_i STR_e STR_t "\0"
358
+ #define STRING_Takri0 STR_T STR_a STR_k STR_r STR_i "\0"
359
+ #define STRING_Tamil0 STR_T STR_a STR_m STR_i STR_l "\0"
360
+ #define STRING_Telugu0 STR_T STR_e STR_l STR_u STR_g STR_u "\0"
361
+ #define STRING_Thaana0 STR_T STR_h STR_a STR_a STR_n STR_a "\0"
362
+ #define STRING_Thai0 STR_T STR_h STR_a STR_i "\0"
363
+ #define STRING_Tibetan0 STR_T STR_i STR_b STR_e STR_t STR_a STR_n "\0"
364
+ #define STRING_Tifinagh0 STR_T STR_i STR_f STR_i STR_n STR_a STR_g STR_h "\0"
365
+ #define STRING_Tirhuta0 STR_T STR_i STR_r STR_h STR_u STR_t STR_a "\0"
366
+ #define STRING_Ugaritic0 STR_U STR_g STR_a STR_r STR_i STR_t STR_i STR_c "\0"
367
+ #define STRING_Vai0 STR_V STR_a STR_i "\0"
368
+ #define STRING_Warang_Citi0 STR_W STR_a STR_r STR_a STR_n STR_g STR_UNDERSCORE STR_C STR_i STR_t STR_i "\0"
369
+ #define STRING_Xan0 STR_X STR_a STR_n "\0"
370
+ #define STRING_Xps0 STR_X STR_p STR_s "\0"
371
+ #define STRING_Xsp0 STR_X STR_s STR_p "\0"
372
+ #define STRING_Xuc0 STR_X STR_u STR_c "\0"
373
+ #define STRING_Xwd0 STR_X STR_w STR_d "\0"
374
+ #define STRING_Yi0 STR_Y STR_i "\0"
375
+ #define STRING_Z0 STR_Z "\0"
376
+ #define STRING_Zl0 STR_Z STR_l "\0"
377
+ #define STRING_Zp0 STR_Z STR_p "\0"
378
+ #define STRING_Zs0 STR_Z STR_s "\0"
379
+
380
+ const char PRIV(utt_names)[] =
381
+ STRING_Any0
382
+ STRING_Arabic0
383
+ STRING_Armenian0
384
+ STRING_Avestan0
385
+ STRING_Balinese0
386
+ STRING_Bamum0
387
+ STRING_Bassa_Vah0
388
+ STRING_Batak0
389
+ STRING_Bengali0
390
+ STRING_Bopomofo0
391
+ STRING_Brahmi0
392
+ STRING_Braille0
393
+ STRING_Buginese0
394
+ STRING_Buhid0
395
+ STRING_C0
396
+ STRING_Canadian_Aboriginal0
397
+ STRING_Carian0
398
+ STRING_Caucasian_Albanian0
399
+ STRING_Cc0
400
+ STRING_Cf0
401
+ STRING_Chakma0
402
+ STRING_Cham0
403
+ STRING_Cherokee0
404
+ STRING_Cn0
405
+ STRING_Co0
406
+ STRING_Common0
407
+ STRING_Coptic0
408
+ STRING_Cs0
409
+ STRING_Cuneiform0
410
+ STRING_Cypriot0
411
+ STRING_Cyrillic0
412
+ STRING_Deseret0
413
+ STRING_Devanagari0
414
+ STRING_Duployan0
415
+ STRING_Egyptian_Hieroglyphs0
416
+ STRING_Elbasan0
417
+ STRING_Ethiopic0
418
+ STRING_Georgian0
419
+ STRING_Glagolitic0
420
+ STRING_Gothic0
421
+ STRING_Grantha0
422
+ STRING_Greek0
423
+ STRING_Gujarati0
424
+ STRING_Gurmukhi0
425
+ STRING_Han0
426
+ STRING_Hangul0
427
+ STRING_Hanunoo0
428
+ STRING_Hebrew0
429
+ STRING_Hiragana0
430
+ STRING_Imperial_Aramaic0
431
+ STRING_Inherited0
432
+ STRING_Inscriptional_Pahlavi0
433
+ STRING_Inscriptional_Parthian0
434
+ STRING_Javanese0
435
+ STRING_Kaithi0
436
+ STRING_Kannada0
437
+ STRING_Katakana0
438
+ STRING_Kayah_Li0
439
+ STRING_Kharoshthi0
440
+ STRING_Khmer0
441
+ STRING_Khojki0
442
+ STRING_Khudawadi0
443
+ STRING_L0
444
+ STRING_L_AMPERSAND0
445
+ STRING_Lao0
446
+ STRING_Latin0
447
+ STRING_Lepcha0
448
+ STRING_Limbu0
449
+ STRING_Linear_A0
450
+ STRING_Linear_B0
451
+ STRING_Lisu0
452
+ STRING_Ll0
453
+ STRING_Lm0
454
+ STRING_Lo0
455
+ STRING_Lt0
456
+ STRING_Lu0
457
+ STRING_Lycian0
458
+ STRING_Lydian0
459
+ STRING_M0
460
+ STRING_Mahajani0
461
+ STRING_Malayalam0
462
+ STRING_Mandaic0
463
+ STRING_Manichaean0
464
+ STRING_Mc0
465
+ STRING_Me0
466
+ STRING_Meetei_Mayek0
467
+ STRING_Mende_Kikakui0
468
+ STRING_Meroitic_Cursive0
469
+ STRING_Meroitic_Hieroglyphs0
470
+ STRING_Miao0
471
+ STRING_Mn0
472
+ STRING_Modi0
473
+ STRING_Mongolian0
474
+ STRING_Mro0
475
+ STRING_Myanmar0
476
+ STRING_N0
477
+ STRING_Nabataean0
478
+ STRING_Nd0
479
+ STRING_New_Tai_Lue0
480
+ STRING_Nko0
481
+ STRING_Nl0
482
+ STRING_No0
483
+ STRING_Ogham0
484
+ STRING_Ol_Chiki0
485
+ STRING_Old_Italic0
486
+ STRING_Old_North_Arabian0
487
+ STRING_Old_Permic0
488
+ STRING_Old_Persian0
489
+ STRING_Old_South_Arabian0
490
+ STRING_Old_Turkic0
491
+ STRING_Oriya0
492
+ STRING_Osmanya0
493
+ STRING_P0
494
+ STRING_Pahawh_Hmong0
495
+ STRING_Palmyrene0
496
+ STRING_Pau_Cin_Hau0
497
+ STRING_Pc0
498
+ STRING_Pd0
499
+ STRING_Pe0
500
+ STRING_Pf0
501
+ STRING_Phags_Pa0
502
+ STRING_Phoenician0
503
+ STRING_Pi0
504
+ STRING_Po0
505
+ STRING_Ps0
506
+ STRING_Psalter_Pahlavi0
507
+ STRING_Rejang0
508
+ STRING_Runic0
509
+ STRING_S0
510
+ STRING_Samaritan0
511
+ STRING_Saurashtra0
512
+ STRING_Sc0
513
+ STRING_Sharada0
514
+ STRING_Shavian0
515
+ STRING_Siddham0
516
+ STRING_Sinhala0
517
+ STRING_Sk0
518
+ STRING_Sm0
519
+ STRING_So0
520
+ STRING_Sora_Sompeng0
521
+ STRING_Sundanese0
522
+ STRING_Syloti_Nagri0
523
+ STRING_Syriac0
524
+ STRING_Tagalog0
525
+ STRING_Tagbanwa0
526
+ STRING_Tai_Le0
527
+ STRING_Tai_Tham0
528
+ STRING_Tai_Viet0
529
+ STRING_Takri0
530
+ STRING_Tamil0
531
+ STRING_Telugu0
532
+ STRING_Thaana0
533
+ STRING_Thai0
534
+ STRING_Tibetan0
535
+ STRING_Tifinagh0
536
+ STRING_Tirhuta0
537
+ STRING_Ugaritic0
538
+ STRING_Vai0
539
+ STRING_Warang_Citi0
540
+ STRING_Xan0
541
+ STRING_Xps0
542
+ STRING_Xsp0
543
+ STRING_Xuc0
544
+ STRING_Xwd0
545
+ STRING_Yi0
546
+ STRING_Z0
547
+ STRING_Zl0
548
+ STRING_Zp0
549
+ STRING_Zs0;
550
+
551
+ const ucp_type_table PRIV(utt)[] = {
552
+ { 0, PT_ANY, 0 },
553
+ { 4, PT_SC, ucp_Arabic },
554
+ { 11, PT_SC, ucp_Armenian },
555
+ { 20, PT_SC, ucp_Avestan },
556
+ { 28, PT_SC, ucp_Balinese },
557
+ { 37, PT_SC, ucp_Bamum },
558
+ { 43, PT_SC, ucp_Bassa_Vah },
559
+ { 53, PT_SC, ucp_Batak },
560
+ { 59, PT_SC, ucp_Bengali },
561
+ { 67, PT_SC, ucp_Bopomofo },
562
+ { 76, PT_SC, ucp_Brahmi },
563
+ { 83, PT_SC, ucp_Braille },
564
+ { 91, PT_SC, ucp_Buginese },
565
+ { 100, PT_SC, ucp_Buhid },
566
+ { 106, PT_GC, ucp_C },
567
+ { 108, PT_SC, ucp_Canadian_Aboriginal },
568
+ { 128, PT_SC, ucp_Carian },
569
+ { 135, PT_SC, ucp_Caucasian_Albanian },
570
+ { 154, PT_PC, ucp_Cc },
571
+ { 157, PT_PC, ucp_Cf },
572
+ { 160, PT_SC, ucp_Chakma },
573
+ { 167, PT_SC, ucp_Cham },
574
+ { 172, PT_SC, ucp_Cherokee },
575
+ { 181, PT_PC, ucp_Cn },
576
+ { 184, PT_PC, ucp_Co },
577
+ { 187, PT_SC, ucp_Common },
578
+ { 194, PT_SC, ucp_Coptic },
579
+ { 201, PT_PC, ucp_Cs },
580
+ { 204, PT_SC, ucp_Cuneiform },
581
+ { 214, PT_SC, ucp_Cypriot },
582
+ { 222, PT_SC, ucp_Cyrillic },
583
+ { 231, PT_SC, ucp_Deseret },
584
+ { 239, PT_SC, ucp_Devanagari },
585
+ { 250, PT_SC, ucp_Duployan },
586
+ { 259, PT_SC, ucp_Egyptian_Hieroglyphs },
587
+ { 280, PT_SC, ucp_Elbasan },
588
+ { 288, PT_SC, ucp_Ethiopic },
589
+ { 297, PT_SC, ucp_Georgian },
590
+ { 306, PT_SC, ucp_Glagolitic },
591
+ { 317, PT_SC, ucp_Gothic },
592
+ { 324, PT_SC, ucp_Grantha },
593
+ { 332, PT_SC, ucp_Greek },
594
+ { 338, PT_SC, ucp_Gujarati },
595
+ { 347, PT_SC, ucp_Gurmukhi },
596
+ { 356, PT_SC, ucp_Han },
597
+ { 360, PT_SC, ucp_Hangul },
598
+ { 367, PT_SC, ucp_Hanunoo },
599
+ { 375, PT_SC, ucp_Hebrew },
600
+ { 382, PT_SC, ucp_Hiragana },
601
+ { 391, PT_SC, ucp_Imperial_Aramaic },
602
+ { 408, PT_SC, ucp_Inherited },
603
+ { 418, PT_SC, ucp_Inscriptional_Pahlavi },
604
+ { 440, PT_SC, ucp_Inscriptional_Parthian },
605
+ { 463, PT_SC, ucp_Javanese },
606
+ { 472, PT_SC, ucp_Kaithi },
607
+ { 479, PT_SC, ucp_Kannada },
608
+ { 487, PT_SC, ucp_Katakana },
609
+ { 496, PT_SC, ucp_Kayah_Li },
610
+ { 505, PT_SC, ucp_Kharoshthi },
611
+ { 516, PT_SC, ucp_Khmer },
612
+ { 522, PT_SC, ucp_Khojki },
613
+ { 529, PT_SC, ucp_Khudawadi },
614
+ { 539, PT_GC, ucp_L },
615
+ { 541, PT_LAMP, 0 },
616
+ { 544, PT_SC, ucp_Lao },
617
+ { 548, PT_SC, ucp_Latin },
618
+ { 554, PT_SC, ucp_Lepcha },
619
+ { 561, PT_SC, ucp_Limbu },
620
+ { 567, PT_SC, ucp_Linear_A },
621
+ { 576, PT_SC, ucp_Linear_B },
622
+ { 585, PT_SC, ucp_Lisu },
623
+ { 590, PT_PC, ucp_Ll },
624
+ { 593, PT_PC, ucp_Lm },
625
+ { 596, PT_PC, ucp_Lo },
626
+ { 599, PT_PC, ucp_Lt },
627
+ { 602, PT_PC, ucp_Lu },
628
+ { 605, PT_SC, ucp_Lycian },
629
+ { 612, PT_SC, ucp_Lydian },
630
+ { 619, PT_GC, ucp_M },
631
+ { 621, PT_SC, ucp_Mahajani },
632
+ { 630, PT_SC, ucp_Malayalam },
633
+ { 640, PT_SC, ucp_Mandaic },
634
+ { 648, PT_SC, ucp_Manichaean },
635
+ { 659, PT_PC, ucp_Mc },
636
+ { 662, PT_PC, ucp_Me },
637
+ { 665, PT_SC, ucp_Meetei_Mayek },
638
+ { 678, PT_SC, ucp_Mende_Kikakui },
639
+ { 692, PT_SC, ucp_Meroitic_Cursive },
640
+ { 709, PT_SC, ucp_Meroitic_Hieroglyphs },
641
+ { 730, PT_SC, ucp_Miao },
642
+ { 735, PT_PC, ucp_Mn },
643
+ { 738, PT_SC, ucp_Modi },
644
+ { 743, PT_SC, ucp_Mongolian },
645
+ { 753, PT_SC, ucp_Mro },
646
+ { 757, PT_SC, ucp_Myanmar },
647
+ { 765, PT_GC, ucp_N },
648
+ { 767, PT_SC, ucp_Nabataean },
649
+ { 777, PT_PC, ucp_Nd },
650
+ { 780, PT_SC, ucp_New_Tai_Lue },
651
+ { 792, PT_SC, ucp_Nko },
652
+ { 796, PT_PC, ucp_Nl },
653
+ { 799, PT_PC, ucp_No },
654
+ { 802, PT_SC, ucp_Ogham },
655
+ { 808, PT_SC, ucp_Ol_Chiki },
656
+ { 817, PT_SC, ucp_Old_Italic },
657
+ { 828, PT_SC, ucp_Old_North_Arabian },
658
+ { 846, PT_SC, ucp_Old_Permic },
659
+ { 857, PT_SC, ucp_Old_Persian },
660
+ { 869, PT_SC, ucp_Old_South_Arabian },
661
+ { 887, PT_SC, ucp_Old_Turkic },
662
+ { 898, PT_SC, ucp_Oriya },
663
+ { 904, PT_SC, ucp_Osmanya },
664
+ { 912, PT_GC, ucp_P },
665
+ { 914, PT_SC, ucp_Pahawh_Hmong },
666
+ { 927, PT_SC, ucp_Palmyrene },
667
+ { 937, PT_SC, ucp_Pau_Cin_Hau },
668
+ { 949, PT_PC, ucp_Pc },
669
+ { 952, PT_PC, ucp_Pd },
670
+ { 955, PT_PC, ucp_Pe },
671
+ { 958, PT_PC, ucp_Pf },
672
+ { 961, PT_SC, ucp_Phags_Pa },
673
+ { 970, PT_SC, ucp_Phoenician },
674
+ { 981, PT_PC, ucp_Pi },
675
+ { 984, PT_PC, ucp_Po },
676
+ { 987, PT_PC, ucp_Ps },
677
+ { 990, PT_SC, ucp_Psalter_Pahlavi },
678
+ { 1006, PT_SC, ucp_Rejang },
679
+ { 1013, PT_SC, ucp_Runic },
680
+ { 1019, PT_GC, ucp_S },
681
+ { 1021, PT_SC, ucp_Samaritan },
682
+ { 1031, PT_SC, ucp_Saurashtra },
683
+ { 1042, PT_PC, ucp_Sc },
684
+ { 1045, PT_SC, ucp_Sharada },
685
+ { 1053, PT_SC, ucp_Shavian },
686
+ { 1061, PT_SC, ucp_Siddham },
687
+ { 1069, PT_SC, ucp_Sinhala },
688
+ { 1077, PT_PC, ucp_Sk },
689
+ { 1080, PT_PC, ucp_Sm },
690
+ { 1083, PT_PC, ucp_So },
691
+ { 1086, PT_SC, ucp_Sora_Sompeng },
692
+ { 1099, PT_SC, ucp_Sundanese },
693
+ { 1109, PT_SC, ucp_Syloti_Nagri },
694
+ { 1122, PT_SC, ucp_Syriac },
695
+ { 1129, PT_SC, ucp_Tagalog },
696
+ { 1137, PT_SC, ucp_Tagbanwa },
697
+ { 1146, PT_SC, ucp_Tai_Le },
698
+ { 1153, PT_SC, ucp_Tai_Tham },
699
+ { 1162, PT_SC, ucp_Tai_Viet },
700
+ { 1171, PT_SC, ucp_Takri },
701
+ { 1177, PT_SC, ucp_Tamil },
702
+ { 1183, PT_SC, ucp_Telugu },
703
+ { 1190, PT_SC, ucp_Thaana },
704
+ { 1197, PT_SC, ucp_Thai },
705
+ { 1202, PT_SC, ucp_Tibetan },
706
+ { 1210, PT_SC, ucp_Tifinagh },
707
+ { 1219, PT_SC, ucp_Tirhuta },
708
+ { 1227, PT_SC, ucp_Ugaritic },
709
+ { 1236, PT_SC, ucp_Vai },
710
+ { 1240, PT_SC, ucp_Warang_Citi },
711
+ { 1252, PT_ALNUM, 0 },
712
+ { 1256, PT_PXSPACE, 0 },
713
+ { 1260, PT_SPACE, 0 },
714
+ { 1264, PT_UCNC, 0 },
715
+ { 1268, PT_WORD, 0 },
716
+ { 1272, PT_SC, ucp_Yi },
717
+ { 1275, PT_GC, ucp_Z },
718
+ { 1277, PT_PC, ucp_Zl },
719
+ { 1280, PT_PC, ucp_Zp },
720
+ { 1283, PT_PC, ucp_Zs }
721
+ };
722
+
723
+ const int PRIV(utt_size) = sizeof(PRIV(utt)) / sizeof(ucp_type_table);
724
+
725
+ #endif /* SUPPORT_UTF */
726
+
727
+ /* End of pcre_tables.c */