rugged 0.28.4 → 0.28.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (350) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rugged/version.rb +1 -1
  3. data/vendor/libgit2/AUTHORS +0 -1
  4. data/vendor/libgit2/CMakeLists.txt +16 -36
  5. data/vendor/libgit2/COPYING +0 -28
  6. data/vendor/libgit2/cmake/Modules/EnableWarnings.cmake +1 -5
  7. data/vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake +2 -2
  8. data/vendor/libgit2/cmake/Modules/FindGSSAPI.cmake +1 -1
  9. data/vendor/libgit2/cmake/Modules/FindSecurity.cmake +2 -2
  10. data/vendor/libgit2/cmake/Modules/FindStatNsec.cmake +0 -6
  11. data/vendor/libgit2/deps/http-parser/http_parser.c +6 -11
  12. data/vendor/libgit2/deps/regex/CMakeLists.txt +2 -0
  13. data/vendor/libgit2/deps/regex/COPYING +502 -0
  14. data/vendor/libgit2/deps/regex/config.h +7 -0
  15. data/vendor/libgit2/deps/regex/regcomp.c +3857 -0
  16. data/vendor/libgit2/deps/regex/regex.c +92 -0
  17. data/vendor/libgit2/deps/regex/regex.h +582 -0
  18. data/vendor/libgit2/deps/regex/regex_internal.c +1744 -0
  19. data/vendor/libgit2/deps/regex/regex_internal.h +819 -0
  20. data/vendor/libgit2/deps/regex/regexec.c +4369 -0
  21. data/vendor/libgit2/deps/zlib/adler32.c +7 -0
  22. data/vendor/libgit2/deps/zlib/crc32.c +7 -0
  23. data/vendor/libgit2/include/git2.h +0 -2
  24. data/vendor/libgit2/include/git2/apply.h +2 -22
  25. data/vendor/libgit2/include/git2/attr.h +12 -19
  26. data/vendor/libgit2/include/git2/blame.h +2 -2
  27. data/vendor/libgit2/include/git2/blob.h +12 -44
  28. data/vendor/libgit2/include/git2/buffer.h +14 -20
  29. data/vendor/libgit2/include/git2/checkout.h +14 -46
  30. data/vendor/libgit2/include/git2/cherrypick.h +3 -3
  31. data/vendor/libgit2/include/git2/clone.h +2 -2
  32. data/vendor/libgit2/include/git2/commit.h +1 -23
  33. data/vendor/libgit2/include/git2/common.h +5 -7
  34. data/vendor/libgit2/include/git2/config.h +12 -12
  35. data/vendor/libgit2/include/git2/deprecated.h +3 -243
  36. data/vendor/libgit2/include/git2/describe.h +4 -4
  37. data/vendor/libgit2/include/git2/diff.h +14 -16
  38. data/vendor/libgit2/include/git2/filter.h +0 -8
  39. data/vendor/libgit2/include/git2/index.h +1 -2
  40. data/vendor/libgit2/include/git2/indexer.h +4 -48
  41. data/vendor/libgit2/include/git2/inttypes.h +309 -0
  42. data/vendor/libgit2/include/git2/merge.h +10 -6
  43. data/vendor/libgit2/include/git2/net.h +5 -0
  44. data/vendor/libgit2/include/git2/object.h +14 -2
  45. data/vendor/libgit2/include/git2/odb.h +2 -3
  46. data/vendor/libgit2/include/git2/odb_backend.h +4 -5
  47. data/vendor/libgit2/include/git2/oid.h +1 -1
  48. data/vendor/libgit2/include/git2/pack.h +1 -12
  49. data/vendor/libgit2/include/git2/proxy.h +3 -5
  50. data/vendor/libgit2/include/git2/rebase.h +2 -46
  51. data/vendor/libgit2/include/git2/refs.h +0 -19
  52. data/vendor/libgit2/include/git2/remote.h +12 -35
  53. data/vendor/libgit2/include/git2/repository.h +2 -24
  54. data/vendor/libgit2/include/git2/revert.h +1 -1
  55. data/vendor/libgit2/include/git2/stash.h +3 -3
  56. data/vendor/libgit2/include/git2/status.h +16 -25
  57. data/vendor/libgit2/include/git2/submodule.h +3 -20
  58. data/vendor/libgit2/include/git2/sys/alloc.h +9 -9
  59. data/vendor/libgit2/include/git2/sys/odb_backend.h +4 -48
  60. data/vendor/libgit2/include/git2/sys/refdb_backend.h +21 -57
  61. data/vendor/libgit2/include/git2/sys/repository.h +1 -5
  62. data/vendor/libgit2/include/git2/sys/time.h +31 -0
  63. data/vendor/libgit2/include/git2/sys/transport.h +2 -2
  64. data/vendor/libgit2/include/git2/tag.h +2 -11
  65. data/vendor/libgit2/include/git2/trace.h +2 -2
  66. data/vendor/libgit2/include/git2/transport.h +340 -11
  67. data/vendor/libgit2/include/git2/tree.h +1 -1
  68. data/vendor/libgit2/include/git2/types.h +89 -4
  69. data/vendor/libgit2/include/git2/version.h +2 -2
  70. data/vendor/libgit2/include/git2/worktree.h +5 -5
  71. data/vendor/libgit2/libgit2.pc.in +13 -0
  72. data/vendor/libgit2/src/CMakeLists.txt +222 -88
  73. data/vendor/libgit2/src/alloc.c +14 -2
  74. data/vendor/libgit2/src/apply.c +30 -60
  75. data/vendor/libgit2/src/attr.c +64 -70
  76. data/vendor/libgit2/src/attr_file.c +96 -189
  77. data/vendor/libgit2/src/attr_file.h +9 -9
  78. data/vendor/libgit2/src/attrcache.c +46 -44
  79. data/vendor/libgit2/src/attrcache.h +1 -2
  80. data/vendor/libgit2/src/blame.c +5 -17
  81. data/vendor/libgit2/src/blame.h +1 -1
  82. data/vendor/libgit2/src/blame_git.c +7 -21
  83. data/vendor/libgit2/src/blob.c +17 -81
  84. data/vendor/libgit2/src/blob.h +2 -2
  85. data/vendor/libgit2/src/branch.c +5 -29
  86. data/vendor/libgit2/src/buffer.c +7 -14
  87. data/vendor/libgit2/src/cache.c +33 -26
  88. data/vendor/libgit2/src/cache.h +1 -1
  89. data/vendor/libgit2/src/cc-compat.h +0 -5
  90. data/vendor/libgit2/src/checkout.c +16 -26
  91. data/vendor/libgit2/src/cherrypick.c +3 -9
  92. data/vendor/libgit2/src/clone.c +7 -29
  93. data/vendor/libgit2/src/clone.h +0 -4
  94. data/vendor/libgit2/src/commit.c +21 -69
  95. data/vendor/libgit2/src/commit.h +0 -6
  96. data/vendor/libgit2/src/commit_list.c +76 -28
  97. data/vendor/libgit2/src/commit_list.h +2 -2
  98. data/vendor/libgit2/src/common.h +75 -3
  99. data/vendor/libgit2/src/config.c +40 -31
  100. data/vendor/libgit2/src/config.h +6 -7
  101. data/vendor/libgit2/src/config_backend.h +0 -12
  102. data/vendor/libgit2/src/config_cache.c +39 -39
  103. data/vendor/libgit2/src/config_entries.c +99 -69
  104. data/vendor/libgit2/src/config_entries.h +0 -1
  105. data/vendor/libgit2/src/config_file.c +380 -337
  106. data/vendor/libgit2/src/config_mem.c +16 -12
  107. data/vendor/libgit2/src/config_parse.c +29 -49
  108. data/vendor/libgit2/src/config_parse.h +12 -13
  109. data/vendor/libgit2/src/crlf.c +14 -14
  110. data/vendor/libgit2/src/describe.c +20 -21
  111. data/vendor/libgit2/src/diff.c +58 -43
  112. data/vendor/libgit2/src/diff.h +1 -2
  113. data/vendor/libgit2/src/diff_driver.c +38 -37
  114. data/vendor/libgit2/src/diff_file.c +7 -9
  115. data/vendor/libgit2/src/diff_file.h +1 -1
  116. data/vendor/libgit2/src/diff_generate.c +85 -135
  117. data/vendor/libgit2/src/diff_generate.h +2 -2
  118. data/vendor/libgit2/src/diff_parse.c +1 -1
  119. data/vendor/libgit2/src/diff_print.c +13 -25
  120. data/vendor/libgit2/src/diff_stats.c +1 -1
  121. data/vendor/libgit2/src/diff_tform.c +4 -4
  122. data/vendor/libgit2/src/errors.c +22 -12
  123. data/vendor/libgit2/src/features.h.in +2 -9
  124. data/vendor/libgit2/src/fetch.c +2 -7
  125. data/vendor/libgit2/src/fetchhead.c +1 -1
  126. data/vendor/libgit2/src/filebuf.c +10 -6
  127. data/vendor/libgit2/src/filebuf.h +2 -2
  128. data/vendor/libgit2/src/{futils.c → fileops.c} +17 -21
  129. data/vendor/libgit2/src/{futils.h → fileops.h} +5 -5
  130. data/vendor/libgit2/src/filter.c +8 -16
  131. data/vendor/libgit2/src/fnmatch.c +248 -0
  132. data/vendor/libgit2/src/fnmatch.h +48 -0
  133. data/vendor/libgit2/src/global.c +40 -12
  134. data/vendor/libgit2/src/global.h +2 -0
  135. data/vendor/libgit2/src/hash.c +0 -61
  136. data/vendor/libgit2/src/hash.h +21 -19
  137. data/vendor/libgit2/src/hash/{sha1/collisiondetect.c → hash_collisiondetect.h} +17 -14
  138. data/vendor/libgit2/src/hash/{sha1/common_crypto.c → hash_common_crypto.h} +19 -15
  139. data/vendor/libgit2/src/hash/{sha1/generic.c → hash_generic.c} +10 -22
  140. data/vendor/libgit2/src/hash/{sha1/generic.h → hash_generic.h} +14 -4
  141. data/vendor/libgit2/src/hash/{sha1/mbedtls.c → hash_mbedtls.c} +7 -15
  142. data/vendor/libgit2/src/hash/{sha1/mbedtls.h → hash_mbedtls.h} +11 -6
  143. data/vendor/libgit2/src/hash/{sha1/openssl.c → hash_openssl.h} +18 -14
  144. data/vendor/libgit2/src/hash/{sha1/win32.c → hash_win32.c} +24 -34
  145. data/vendor/libgit2/src/hash/{sha1/win32.h → hash_win32.h} +19 -6
  146. data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/sha1.c +3 -14
  147. data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/sha1.h +0 -0
  148. data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/ubc_check.c +0 -0
  149. data/vendor/libgit2/src/hash/{sha1/sha1dc → sha1dc}/ubc_check.h +0 -0
  150. data/vendor/libgit2/src/hashsig.c +1 -1
  151. data/vendor/libgit2/src/idxmap.c +65 -91
  152. data/vendor/libgit2/src/idxmap.h +15 -151
  153. data/vendor/libgit2/src/ignore.c +38 -32
  154. data/vendor/libgit2/src/index.c +43 -66
  155. data/vendor/libgit2/src/index.h +1 -1
  156. data/vendor/libgit2/src/indexer.c +70 -69
  157. data/vendor/libgit2/src/integer.h +4 -39
  158. data/vendor/libgit2/src/iterator.c +22 -27
  159. data/vendor/libgit2/src/map.h +1 -1
  160. data/vendor/libgit2/src/merge.c +44 -58
  161. data/vendor/libgit2/src/merge_driver.c +4 -4
  162. data/vendor/libgit2/src/merge_file.c +1 -1
  163. data/vendor/libgit2/src/mwindow.c +23 -18
  164. data/vendor/libgit2/src/mwindow.h +4 -4
  165. data/vendor/libgit2/src/netops.c +165 -55
  166. data/vendor/libgit2/src/netops.h +25 -3
  167. data/vendor/libgit2/src/notes.c +2 -2
  168. data/vendor/libgit2/src/object.c +2 -2
  169. data/vendor/libgit2/src/object.h +0 -2
  170. data/vendor/libgit2/src/odb.c +23 -41
  171. data/vendor/libgit2/src/odb.h +2 -3
  172. data/vendor/libgit2/src/odb_loose.c +10 -17
  173. data/vendor/libgit2/src/odb_mempack.c +23 -10
  174. data/vendor/libgit2/src/odb_pack.c +4 -4
  175. data/vendor/libgit2/src/offmap.c +55 -43
  176. data/vendor/libgit2/src/offmap.h +24 -102
  177. data/vendor/libgit2/src/oid.c +1 -6
  178. data/vendor/libgit2/src/oidmap.c +57 -39
  179. data/vendor/libgit2/src/oidmap.h +19 -99
  180. data/vendor/libgit2/src/pack-objects.c +32 -25
  181. data/vendor/libgit2/src/pack-objects.h +1 -1
  182. data/vendor/libgit2/src/pack.c +47 -45
  183. data/vendor/libgit2/src/pack.h +14 -12
  184. data/vendor/libgit2/src/parse.c +0 -10
  185. data/vendor/libgit2/src/parse.h +3 -3
  186. data/vendor/libgit2/src/patch.c +1 -1
  187. data/vendor/libgit2/src/patch_generate.c +2 -2
  188. data/vendor/libgit2/src/patch_parse.c +31 -124
  189. data/vendor/libgit2/src/path.c +6 -43
  190. data/vendor/libgit2/src/path.h +0 -2
  191. data/vendor/libgit2/src/pathspec.c +13 -13
  192. data/vendor/libgit2/src/pool.c +22 -26
  193. data/vendor/libgit2/src/pool.h +7 -7
  194. data/vendor/libgit2/src/posix.c +7 -7
  195. data/vendor/libgit2/src/posix.h +1 -12
  196. data/vendor/libgit2/src/proxy.c +2 -7
  197. data/vendor/libgit2/src/push.c +5 -10
  198. data/vendor/libgit2/src/reader.c +2 -2
  199. data/vendor/libgit2/src/rebase.c +7 -66
  200. data/vendor/libgit2/src/refdb.c +0 -12
  201. data/vendor/libgit2/src/refdb_fs.c +165 -214
  202. data/vendor/libgit2/src/reflog.c +13 -11
  203. data/vendor/libgit2/src/refs.c +18 -24
  204. data/vendor/libgit2/src/refspec.c +16 -9
  205. data/vendor/libgit2/src/remote.c +52 -50
  206. data/vendor/libgit2/src/remote.h +2 -2
  207. data/vendor/libgit2/src/repository.c +100 -115
  208. data/vendor/libgit2/src/repository.h +40 -49
  209. data/vendor/libgit2/src/revert.c +3 -8
  210. data/vendor/libgit2/src/revparse.c +19 -18
  211. data/vendor/libgit2/src/revwalk.c +30 -63
  212. data/vendor/libgit2/src/revwalk.h +0 -20
  213. data/vendor/libgit2/src/settings.c +0 -5
  214. data/vendor/libgit2/src/sortedcache.c +26 -12
  215. data/vendor/libgit2/src/sortedcache.h +1 -1
  216. data/vendor/libgit2/src/stash.c +65 -45
  217. data/vendor/libgit2/src/status.c +9 -15
  218. data/vendor/libgit2/src/{allocators/stdalloc.c → stdalloc.c} +4 -3
  219. data/vendor/libgit2/src/{allocators/stdalloc.h → stdalloc.h} +4 -4
  220. data/vendor/libgit2/src/streams/openssl.c +0 -20
  221. data/vendor/libgit2/src/streams/socket.c +2 -2
  222. data/vendor/libgit2/src/strmap.c +84 -37
  223. data/vendor/libgit2/src/strmap.h +33 -105
  224. data/vendor/libgit2/src/submodule.c +70 -102
  225. data/vendor/libgit2/src/submodule.h +1 -1
  226. data/vendor/libgit2/src/sysdir.c +1 -11
  227. data/vendor/libgit2/src/tag.c +2 -10
  228. data/vendor/libgit2/src/trace.c +1 -1
  229. data/vendor/libgit2/src/trace.h +2 -2
  230. data/vendor/libgit2/src/trailer.c +32 -46
  231. data/vendor/libgit2/src/transaction.c +9 -10
  232. data/vendor/libgit2/src/transports/auth.c +9 -10
  233. data/vendor/libgit2/src/transports/auth.h +4 -11
  234. data/vendor/libgit2/src/transports/auth_negotiate.c +9 -23
  235. data/vendor/libgit2/src/transports/auth_negotiate.h +2 -2
  236. data/vendor/libgit2/src/transports/cred.c +6 -6
  237. data/vendor/libgit2/src/{allocators/win32_crtdbg.h → transports/cred.h} +4 -5
  238. data/vendor/libgit2/src/transports/git.c +16 -11
  239. data/vendor/libgit2/src/transports/http.c +276 -419
  240. data/vendor/libgit2/src/transports/http.h +1 -1
  241. data/vendor/libgit2/src/transports/local.c +9 -9
  242. data/vendor/libgit2/src/transports/smart.c +17 -17
  243. data/vendor/libgit2/src/transports/smart.h +2 -2
  244. data/vendor/libgit2/src/transports/smart_protocol.c +60 -36
  245. data/vendor/libgit2/src/transports/ssh.c +36 -46
  246. data/vendor/libgit2/src/transports/winhttp.c +207 -231
  247. data/vendor/libgit2/src/tree-cache.c +7 -14
  248. data/vendor/libgit2/src/tree.c +24 -10
  249. data/vendor/libgit2/src/unix/map.c +1 -1
  250. data/vendor/libgit2/src/unix/posix.h +11 -1
  251. data/vendor/libgit2/src/userdiff.h +1 -3
  252. data/vendor/libgit2/src/util.c +53 -51
  253. data/vendor/libgit2/src/util.h +21 -16
  254. data/vendor/libgit2/src/win32/map.c +5 -3
  255. data/vendor/libgit2/src/win32/path_w32.c +2 -12
  256. data/vendor/libgit2/src/win32/path_w32.h +29 -0
  257. data/vendor/libgit2/src/win32/posix.h +4 -1
  258. data/vendor/libgit2/src/win32/posix_w32.c +5 -40
  259. data/vendor/libgit2/src/win32/precompiled.h +2 -0
  260. data/vendor/libgit2/src/win32/thread.c +10 -5
  261. data/vendor/libgit2/src/win32/w32_buffer.c +3 -7
  262. data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +93 -0
  263. data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +2 -0
  264. data/vendor/libgit2/src/win32/w32_stack.c +9 -4
  265. data/vendor/libgit2/src/win32/w32_stack.h +3 -3
  266. data/vendor/libgit2/src/win32/w32_util.c +0 -31
  267. data/vendor/libgit2/src/win32/w32_util.h +32 -6
  268. data/vendor/libgit2/src/worktree.c +22 -36
  269. data/vendor/libgit2/src/xdiff/xdiffi.c +1 -1
  270. data/vendor/libgit2/src/xdiff/xmerge.c +0 -12
  271. data/vendor/libgit2/src/xdiff/xpatience.c +0 -3
  272. metadata +34 -98
  273. data/vendor/libgit2/cmake/Modules/FindGSSFramework.cmake +0 -28
  274. data/vendor/libgit2/cmake/Modules/FindPCRE.cmake +0 -38
  275. data/vendor/libgit2/cmake/Modules/FindPCRE2.cmake +0 -37
  276. data/vendor/libgit2/cmake/Modules/PkgBuildConfig.cmake +0 -110
  277. data/vendor/libgit2/cmake/Modules/SelectGSSAPI.cmake +0 -53
  278. data/vendor/libgit2/cmake/Modules/SelectHTTPSBackend.cmake +0 -124
  279. data/vendor/libgit2/cmake/Modules/SelectHashes.cmake +0 -66
  280. data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +0 -21
  281. data/vendor/libgit2/deps/ntlmclient/compat.h +0 -33
  282. data/vendor/libgit2/deps/ntlmclient/crypt.h +0 -64
  283. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +0 -120
  284. data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +0 -18
  285. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +0 -145
  286. data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +0 -18
  287. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +0 -130
  288. data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +0 -21
  289. data/vendor/libgit2/deps/ntlmclient/ntlm.c +0 -1420
  290. data/vendor/libgit2/deps/ntlmclient/ntlm.h +0 -174
  291. data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +0 -320
  292. data/vendor/libgit2/deps/ntlmclient/unicode.h +0 -36
  293. data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +0 -445
  294. data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +0 -201
  295. data/vendor/libgit2/deps/ntlmclient/utf8.h +0 -1257
  296. data/vendor/libgit2/deps/ntlmclient/util.c +0 -21
  297. data/vendor/libgit2/deps/ntlmclient/util.h +0 -14
  298. data/vendor/libgit2/deps/pcre/CMakeLists.txt +0 -140
  299. data/vendor/libgit2/deps/pcre/COPYING +0 -5
  300. data/vendor/libgit2/deps/pcre/cmake/COPYING-CMAKE-SCRIPTS +0 -22
  301. data/vendor/libgit2/deps/pcre/cmake/FindEditline.cmake +0 -17
  302. data/vendor/libgit2/deps/pcre/cmake/FindPackageHandleStandardArgs.cmake +0 -58
  303. data/vendor/libgit2/deps/pcre/cmake/FindReadline.cmake +0 -29
  304. data/vendor/libgit2/deps/pcre/config.h.in +0 -57
  305. data/vendor/libgit2/deps/pcre/pcre.h +0 -641
  306. data/vendor/libgit2/deps/pcre/pcre_byte_order.c +0 -319
  307. data/vendor/libgit2/deps/pcre/pcre_chartables.c +0 -198
  308. data/vendor/libgit2/deps/pcre/pcre_compile.c +0 -9800
  309. data/vendor/libgit2/deps/pcre/pcre_config.c +0 -190
  310. data/vendor/libgit2/deps/pcre/pcre_dfa_exec.c +0 -3676
  311. data/vendor/libgit2/deps/pcre/pcre_exec.c +0 -7173
  312. data/vendor/libgit2/deps/pcre/pcre_fullinfo.c +0 -245
  313. data/vendor/libgit2/deps/pcre/pcre_get.c +0 -669
  314. data/vendor/libgit2/deps/pcre/pcre_globals.c +0 -86
  315. data/vendor/libgit2/deps/pcre/pcre_internal.h +0 -2787
  316. data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +0 -11913
  317. data/vendor/libgit2/deps/pcre/pcre_maketables.c +0 -156
  318. data/vendor/libgit2/deps/pcre/pcre_newline.c +0 -210
  319. data/vendor/libgit2/deps/pcre/pcre_ord2utf8.c +0 -94
  320. data/vendor/libgit2/deps/pcre/pcre_printint.c +0 -834
  321. data/vendor/libgit2/deps/pcre/pcre_refcount.c +0 -92
  322. data/vendor/libgit2/deps/pcre/pcre_string_utils.c +0 -211
  323. data/vendor/libgit2/deps/pcre/pcre_study.c +0 -1686
  324. data/vendor/libgit2/deps/pcre/pcre_tables.c +0 -727
  325. data/vendor/libgit2/deps/pcre/pcre_ucd.c +0 -3644
  326. data/vendor/libgit2/deps/pcre/pcre_valid_utf8.c +0 -301
  327. data/vendor/libgit2/deps/pcre/pcre_version.c +0 -98
  328. data/vendor/libgit2/deps/pcre/pcre_xclass.c +0 -268
  329. data/vendor/libgit2/deps/pcre/pcreposix.c +0 -421
  330. data/vendor/libgit2/deps/pcre/pcreposix.h +0 -117
  331. data/vendor/libgit2/deps/pcre/ucp.h +0 -224
  332. data/vendor/libgit2/include/git2/cert.h +0 -135
  333. data/vendor/libgit2/include/git2/cred.h +0 -308
  334. data/vendor/libgit2/include/git2/sys/cred.h +0 -90
  335. data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
  336. data/vendor/libgit2/src/config_snapshot.c +0 -206
  337. data/vendor/libgit2/src/errors.h +0 -81
  338. data/vendor/libgit2/src/hash/sha1.h +0 -38
  339. data/vendor/libgit2/src/hash/sha1/collisiondetect.h +0 -19
  340. data/vendor/libgit2/src/hash/sha1/common_crypto.h +0 -19
  341. data/vendor/libgit2/src/hash/sha1/openssl.h +0 -19
  342. data/vendor/libgit2/src/net.c +0 -184
  343. data/vendor/libgit2/src/net.h +0 -36
  344. data/vendor/libgit2/src/regexp.c +0 -221
  345. data/vendor/libgit2/src/regexp.h +0 -97
  346. data/vendor/libgit2/src/transports/auth_ntlm.c +0 -223
  347. data/vendor/libgit2/src/transports/auth_ntlm.h +0 -35
  348. data/vendor/libgit2/src/wildmatch.c +0 -320
  349. data/vendor/libgit2/src/wildmatch.h +0 -23
  350. data/vendor/libgit2/src/win32/w32_common.h +0 -39
@@ -1,21 +0,0 @@
1
- /*
2
- * Copyright (c) Edward Thomson. All rights reserved.
3
- *
4
- * This file is part of ntlmclient, distributed under the MIT license.
5
- * For full terms and copyright information, and for third-party
6
- * copyright information, see the included LICENSE.txt file.
7
- */
8
-
9
- #include <stdlib.h>
10
- #include <stdint.h>
11
-
12
- #include "compat.h"
13
- #include "util.h"
14
-
15
- void memzero(void *data, size_t size)
16
- {
17
- volatile uint8_t *scan = (volatile uint8_t *)data;
18
-
19
- while (size--)
20
- *scan++ = 0x0;
21
- }
@@ -1,14 +0,0 @@
1
- /*
2
- * Copyright (c) Edward Thomson. All rights reserved.
3
- *
4
- * This file is part of ntlmclient, distributed under the MIT license.
5
- * For full terms and copyright information, and for third-party
6
- * copyright information, see the included LICENSE.txt file.
7
- */
8
-
9
- #ifndef PRIVATE_UTIL_H__
10
- #define PRIVATE_UTIL_H__
11
-
12
- extern void memzero(void *data, size_t size);
13
-
14
- #endif /* PRIVATE_UTIL_H__ */
@@ -1,140 +0,0 @@
1
- INCLUDE(CheckIncludeFile)
2
- INCLUDE(CheckFunctionExists)
3
- INCLUDE(CheckTypeSize)
4
-
5
- CHECK_INCLUDE_FILE(dirent.h HAVE_DIRENT_H)
6
- CHECK_INCLUDE_FILE(stdint.h HAVE_STDINT_H)
7
- CHECK_INCLUDE_FILE(inttypes.h HAVE_INTTYPES_H)
8
- CHECK_INCLUDE_FILE(sys/stat.h HAVE_SYS_STAT_H)
9
- CHECK_INCLUDE_FILE(sys/types.h HAVE_SYS_TYPES_H)
10
- CHECK_INCLUDE_FILE(unistd.h HAVE_UNISTD_H)
11
- CHECK_INCLUDE_FILE(windows.h HAVE_WINDOWS_H)
12
-
13
- CHECK_FUNCTION_EXISTS(bcopy HAVE_BCOPY)
14
- CHECK_FUNCTION_EXISTS(memmove HAVE_MEMMOVE)
15
- CHECK_FUNCTION_EXISTS(strerror HAVE_STRERROR)
16
- CHECK_FUNCTION_EXISTS(strtoll HAVE_STRTOLL)
17
- CHECK_FUNCTION_EXISTS(strtoq HAVE_STRTOQ)
18
- CHECK_FUNCTION_EXISTS(_strtoi64 HAVE__STRTOI64)
19
-
20
- CHECK_TYPE_SIZE("long long" LONG_LONG)
21
- CHECK_TYPE_SIZE("unsigned long long" UNSIGNED_LONG_LONG)
22
-
23
- DISABLE_WARNINGS(unused-function)
24
- DISABLE_WARNINGS(implicit-fallthrough)
25
-
26
- # User-configurable options
27
-
28
- SET(SUPPORT_PCRE8 1)
29
- SET(PCRE_LINK_SIZE "2")
30
- SET(PCRE_PARENS_NEST_LIMIT "250")
31
- SET(PCRE_MATCH_LIMIT "10000000")
32
- SET(PCRE_MATCH_LIMIT_RECURSION "MATCH_LIMIT")
33
- SET(PCRE_NEWLINE "LF")
34
- SET(NO_RECURSE 1)
35
- SET(PCRE_POSIX_MALLOC_THRESHOLD "10")
36
- SET(BSR_ANYCRLF 0)
37
-
38
- IF (MINGW)
39
- OPTION(NON_STANDARD_LIB_PREFIX
40
- "ON=Shared libraries built in mingw will be named pcre.dll, etc., instead of libpcre.dll, etc."
41
- OFF)
42
-
43
- OPTION(NON_STANDARD_LIB_SUFFIX
44
- "ON=Shared libraries built in mingw will be named libpcre-0.dll, etc., instead of libpcre.dll, etc."
45
- OFF)
46
- ENDIF(MINGW)
47
-
48
- # Prepare build configuration
49
-
50
- SET(pcre_have_long_long 0)
51
- SET(pcre_have_ulong_long 0)
52
-
53
- IF(HAVE_LONG_LONG)
54
- SET(pcre_have_long_long 1)
55
- ENDIF(HAVE_LONG_LONG)
56
-
57
- IF(HAVE_UNSIGNED_LONG_LONG)
58
- SET(pcre_have_ulong_long 1)
59
- ENDIF(HAVE_UNSIGNED_LONG_LONG)
60
-
61
- SET(NEWLINE "")
62
-
63
- IF(PCRE_NEWLINE STREQUAL "LF")
64
- SET(NEWLINE "10")
65
- ENDIF(PCRE_NEWLINE STREQUAL "LF")
66
- IF(PCRE_NEWLINE STREQUAL "CR")
67
- SET(NEWLINE "13")
68
- ENDIF(PCRE_NEWLINE STREQUAL "CR")
69
- IF(PCRE_NEWLINE STREQUAL "CRLF")
70
- SET(NEWLINE "3338")
71
- ENDIF(PCRE_NEWLINE STREQUAL "CRLF")
72
- IF(PCRE_NEWLINE STREQUAL "ANY")
73
- SET(NEWLINE "-1")
74
- ENDIF(PCRE_NEWLINE STREQUAL "ANY")
75
- IF(PCRE_NEWLINE STREQUAL "ANYCRLF")
76
- SET(NEWLINE "-2")
77
- ENDIF(PCRE_NEWLINE STREQUAL "ANYCRLF")
78
-
79
- IF(NEWLINE STREQUAL "")
80
- MESSAGE(FATAL_ERROR "The PCRE_NEWLINE variable must be set to one of the following values: \"LF\", \"CR\", \"CRLF\", \"ANY\", \"ANYCRLF\".")
81
- ENDIF(NEWLINE STREQUAL "")
82
-
83
- # Output files
84
- CONFIGURE_FILE(config.h.in
85
- ${PROJECT_BINARY_DIR}/src/pcre/config.h
86
- @ONLY)
87
-
88
- # Source code
89
-
90
- SET(PCRE_HEADERS ${PROJECT_BINARY_DIR}/src/pcre/config.h)
91
-
92
- SET(PCRE_SOURCES
93
- pcre_byte_order.c
94
- pcre_chartables.c
95
- pcre_compile.c
96
- pcre_config.c
97
- pcre_dfa_exec.c
98
- pcre_exec.c
99
- pcre_fullinfo.c
100
- pcre_get.c
101
- pcre_globals.c
102
- pcre_jit_compile.c
103
- pcre_maketables.c
104
- pcre_newline.c
105
- pcre_ord2utf8.c
106
- pcre_refcount.c
107
- pcre_string_utils.c
108
- pcre_study.c
109
- pcre_tables.c
110
- pcre_ucd.c
111
- pcre_valid_utf8.c
112
- pcre_version.c
113
- pcre_xclass.c
114
- )
115
-
116
- SET(PCREPOSIX_HEADERS pcreposix.h)
117
-
118
- SET(PCREPOSIX_SOURCES pcreposix.c)
119
-
120
- # Fix static compilation with MSVC: https://bugs.exim.org/show_bug.cgi?id=1681
121
- # This code was taken from the CMake wiki, not from WebM.
122
-
123
- # Build setup
124
-
125
- ADD_DEFINITIONS(-DHAVE_CONFIG_H)
126
-
127
- IF(MSVC)
128
- ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS)
129
- ENDIF(MSVC)
130
-
131
- SET(CMAKE_INCLUDE_CURRENT_DIR 1)
132
-
133
- SET(targets)
134
-
135
- # Libraries
136
- # pcre
137
- INCLUDE_DIRECTORIES(${PROJECT_BINARY_DIR}/src/pcre)
138
- ADD_LIBRARY(pcre OBJECT ${PCRE_HEADERS} ${PCRE_SOURCES} ${PCREPOSIX_SOURCES})
139
-
140
- # end CMakeLists.txt
@@ -1,5 +0,0 @@
1
- PCRE LICENCE
2
-
3
- Please see the file LICENCE in the PCRE distribution for licensing details.
4
-
5
- End
@@ -1,22 +0,0 @@
1
- Redistribution and use in source and binary forms, with or without
2
- modification, are permitted provided that the following conditions
3
- are met:
4
-
5
- 1. Redistributions of source code must retain the copyright
6
- notice, this list of conditions and the following disclaimer.
7
- 2. Redistributions in binary form must reproduce the copyright
8
- notice, this list of conditions and the following disclaimer in the
9
- documentation and/or other materials provided with the distribution.
10
- 3. The name of the author may not be used to endorse or promote products
11
- derived from this software without specific prior written permission.
12
-
13
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14
- IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15
- OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16
- IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18
- NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19
- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20
- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22
- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -1,17 +0,0 @@
1
- # Modified from FindReadline.cmake (PH Feb 2012)
2
-
3
- if(EDITLINE_INCLUDE_DIR AND EDITLINE_LIBRARY AND NCURSES_LIBRARY)
4
- set(EDITLINE_FOUND TRUE)
5
- else(EDITLINE_INCLUDE_DIR AND EDITLINE_LIBRARY AND NCURSES_LIBRARY)
6
- FIND_PATH(EDITLINE_INCLUDE_DIR readline.h
7
- /usr/include/editline
8
- /usr/include/edit/readline
9
- /usr/include/readline
10
- )
11
-
12
- FIND_LIBRARY(EDITLINE_LIBRARY NAMES edit)
13
- include(FindPackageHandleStandardArgs)
14
- FIND_PACKAGE_HANDLE_STANDARD_ARGS(Editline DEFAULT_MSG EDITLINE_INCLUDE_DIR EDITLINE_LIBRARY )
15
-
16
- MARK_AS_ADVANCED(EDITLINE_INCLUDE_DIR EDITLINE_LIBRARY)
17
- endif(EDITLINE_INCLUDE_DIR AND EDITLINE_LIBRARY AND NCURSES_LIBRARY)
@@ -1,58 +0,0 @@
1
- # FIND_PACKAGE_HANDLE_STANDARD_ARGS(NAME (DEFAULT_MSG|"Custom failure message") VAR1 ... )
2
- # This macro is intended to be used in FindXXX.cmake modules files.
3
- # It handles the REQUIRED and QUIET argument to FIND_PACKAGE() and
4
- # it also sets the <UPPERCASED_NAME>_FOUND variable.
5
- # The package is found if all variables listed are TRUE.
6
- # Example:
7
- #
8
- # FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibXml2 DEFAULT_MSG LIBXML2_LIBRARIES LIBXML2_INCLUDE_DIR)
9
- #
10
- # LibXml2 is considered to be found, if both LIBXML2_LIBRARIES and
11
- # LIBXML2_INCLUDE_DIR are valid. Then also LIBXML2_FOUND is set to TRUE.
12
- # If it is not found and REQUIRED was used, it fails with FATAL_ERROR,
13
- # independent whether QUIET was used or not.
14
- # If it is found, the location is reported using the VAR1 argument, so
15
- # here a message "Found LibXml2: /usr/lib/libxml2.so" will be printed out.
16
- # If the second argument is DEFAULT_MSG, the message in the failure case will
17
- # be "Could NOT find LibXml2", if you don't like this message you can specify
18
- # your own custom failure message there.
19
-
20
- MACRO(FIND_PACKAGE_HANDLE_STANDARD_ARGS _NAME _FAIL_MSG _VAR1 )
21
-
22
- IF("${_FAIL_MSG}" STREQUAL "DEFAULT_MSG")
23
- IF (${_NAME}_FIND_REQUIRED)
24
- SET(_FAIL_MESSAGE "Could not find REQUIRED package ${_NAME}")
25
- ELSE (${_NAME}_FIND_REQUIRED)
26
- SET(_FAIL_MESSAGE "Could not find OPTIONAL package ${_NAME}")
27
- ENDIF (${_NAME}_FIND_REQUIRED)
28
- ELSE("${_FAIL_MSG}" STREQUAL "DEFAULT_MSG")
29
- SET(_FAIL_MESSAGE "${_FAIL_MSG}")
30
- ENDIF("${_FAIL_MSG}" STREQUAL "DEFAULT_MSG")
31
-
32
- STRING(TOUPPER ${_NAME} _NAME_UPPER)
33
-
34
- SET(${_NAME_UPPER}_FOUND TRUE)
35
- IF(NOT ${_VAR1})
36
- SET(${_NAME_UPPER}_FOUND FALSE)
37
- ENDIF(NOT ${_VAR1})
38
-
39
- FOREACH(_CURRENT_VAR ${ARGN})
40
- IF(NOT ${_CURRENT_VAR})
41
- SET(${_NAME_UPPER}_FOUND FALSE)
42
- ENDIF(NOT ${_CURRENT_VAR})
43
- ENDFOREACH(_CURRENT_VAR)
44
-
45
- IF (${_NAME_UPPER}_FOUND)
46
- IF (NOT ${_NAME}_FIND_QUIETLY)
47
- MESSAGE(STATUS "Found ${_NAME}: ${${_VAR1}}")
48
- ENDIF (NOT ${_NAME}_FIND_QUIETLY)
49
- ELSE (${_NAME_UPPER}_FOUND)
50
- IF (${_NAME}_FIND_REQUIRED)
51
- MESSAGE(FATAL_ERROR "${_FAIL_MESSAGE}")
52
- ELSE (${_NAME}_FIND_REQUIRED)
53
- IF (NOT ${_NAME}_FIND_QUIETLY)
54
- MESSAGE(STATUS "${_FAIL_MESSAGE}")
55
- ENDIF (NOT ${_NAME}_FIND_QUIETLY)
56
- ENDIF (${_NAME}_FIND_REQUIRED)
57
- ENDIF (${_NAME_UPPER}_FOUND)
58
- ENDMACRO(FIND_PACKAGE_HANDLE_STANDARD_ARGS)
@@ -1,29 +0,0 @@
1
- # from http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/FindReadline.cmake
2
- # http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/COPYING-CMAKE-SCRIPTS
3
- # --> BSD licensed
4
- #
5
- # GNU Readline library finder
6
- if(READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NCURSES_LIBRARY)
7
- set(READLINE_FOUND TRUE)
8
- else(READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NCURSES_LIBRARY)
9
- FIND_PATH(READLINE_INCLUDE_DIR readline/readline.h
10
- /usr/include/readline
11
- )
12
-
13
- # 2008-04-22 The next clause used to read like this:
14
- #
15
- # FIND_LIBRARY(READLINE_LIBRARY NAMES readline)
16
- # FIND_LIBRARY(NCURSES_LIBRARY NAMES ncurses )
17
- # include(FindPackageHandleStandardArgs)
18
- # FIND_PACKAGE_HANDLE_STANDARD_ARGS(Readline DEFAULT_MSG NCURSES_LIBRARY READLINE_INCLUDE_DIR READLINE_LIBRARY )
19
- #
20
- # I was advised to modify it such that it will find an ncurses library if
21
- # required, but not if one was explicitly given, that is, it allows the
22
- # default to be overridden. PH
23
-
24
- FIND_LIBRARY(READLINE_LIBRARY NAMES readline)
25
- include(FindPackageHandleStandardArgs)
26
- FIND_PACKAGE_HANDLE_STANDARD_ARGS(Readline DEFAULT_MSG READLINE_INCLUDE_DIR READLINE_LIBRARY )
27
-
28
- MARK_AS_ADVANCED(READLINE_INCLUDE_DIR READLINE_LIBRARY)
29
- endif(READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NCURSES_LIBRARY)
@@ -1,57 +0,0 @@
1
- /* config.h for CMake builds */
2
-
3
- #cmakedefine HAVE_DIRENT_H 1
4
- #cmakedefine HAVE_SYS_STAT_H 1
5
- #cmakedefine HAVE_SYS_TYPES_H 1
6
- #cmakedefine HAVE_UNISTD_H 1
7
- #cmakedefine HAVE_WINDOWS_H 1
8
- #cmakedefine HAVE_STDINT_H 1
9
- #cmakedefine HAVE_INTTYPES_H 1
10
-
11
- #cmakedefine HAVE_TYPE_TRAITS_H 1
12
- #cmakedefine HAVE_BITS_TYPE_TRAITS_H 1
13
-
14
- #cmakedefine HAVE_BCOPY 1
15
- #cmakedefine HAVE_MEMMOVE 1
16
- #cmakedefine HAVE_STRERROR 1
17
- #cmakedefine HAVE_STRTOLL 1
18
- #cmakedefine HAVE_STRTOQ 1
19
- #cmakedefine HAVE__STRTOI64 1
20
-
21
- #cmakedefine PCRE_STATIC 1
22
-
23
- #cmakedefine SUPPORT_PCRE8 1
24
- #cmakedefine SUPPORT_PCRE16 1
25
- #cmakedefine SUPPORT_PCRE32 1
26
- #cmakedefine SUPPORT_JIT 1
27
- #cmakedefine SUPPORT_PCREGREP_JIT 1
28
- #cmakedefine SUPPORT_UTF 1
29
- #cmakedefine SUPPORT_UCP 1
30
- #cmakedefine EBCDIC 1
31
- #cmakedefine EBCDIC_NL25 1
32
- #cmakedefine BSR_ANYCRLF 1
33
- #cmakedefine NO_RECURSE 1
34
-
35
- #cmakedefine HAVE_LONG_LONG 1
36
- #cmakedefine HAVE_UNSIGNED_LONG_LONG 1
37
-
38
- #cmakedefine SUPPORT_LIBBZ2 1
39
- #cmakedefine SUPPORT_LIBZ 1
40
- #cmakedefine SUPPORT_LIBEDIT 1
41
- #cmakedefine SUPPORT_LIBREADLINE 1
42
-
43
- #cmakedefine SUPPORT_VALGRIND 1
44
- #cmakedefine SUPPORT_GCOV 1
45
-
46
- #define NEWLINE @NEWLINE@
47
- #define POSIX_MALLOC_THRESHOLD @PCRE_POSIX_MALLOC_THRESHOLD@
48
- #define LINK_SIZE @PCRE_LINK_SIZE@
49
- #define PARENS_NEST_LIMIT @PCRE_PARENS_NEST_LIMIT@
50
- #define MATCH_LIMIT @PCRE_MATCH_LIMIT@
51
- #define MATCH_LIMIT_RECURSION @PCRE_MATCH_LIMIT_RECURSION@
52
- #define PCREGREP_BUFSIZE @PCREGREP_BUFSIZE@
53
-
54
- #define MAX_NAME_SIZE 32
55
- #define MAX_NAME_COUNT 10000
56
-
57
- /* end config.h for CMake builds */
@@ -1,641 +0,0 @@
1
- /*************************************************
2
- * Perl-Compatible Regular Expressions *
3
- *************************************************/
4
-
5
- /* This is the public header file for the PCRE library, to be #included by
6
- applications that call the PCRE functions.
7
-
8
- Copyright (c) 1997-2014 University of Cambridge
9
-
10
- -----------------------------------------------------------------------------
11
- Redistribution and use in source and binary forms, with or without
12
- modification, are permitted provided that the following conditions are met:
13
-
14
- * Redistributions of source code must retain the above copyright notice,
15
- this list of conditions and the following disclaimer.
16
-
17
- * Redistributions in binary form must reproduce the above copyright
18
- notice, this list of conditions and the following disclaimer in the
19
- documentation and/or other materials provided with the distribution.
20
-
21
- * Neither the name of the University of Cambridge nor the names of its
22
- contributors may be used to endorse or promote products derived from
23
- this software without specific prior written permission.
24
-
25
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28
- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35
- POSSIBILITY OF SUCH DAMAGE.
36
- -----------------------------------------------------------------------------
37
- */
38
-
39
- #ifndef _PCRE_H
40
- #define _PCRE_H
41
-
42
- /* The current PCRE version information. */
43
-
44
- #define PCRE_MAJOR 8
45
- #define PCRE_MINOR 42
46
- #define PCRE_PRERELEASE
47
- #define PCRE_DATE 2018-03-20
48
-
49
- #define PCRE_EXP_DECL extern
50
-
51
- /* Have to include stdlib.h in order to ensure that size_t is defined;
52
- it is needed here for malloc. */
53
-
54
- #include <stdlib.h>
55
-
56
- /* Allow for C++ users */
57
-
58
- #ifdef __cplusplus
59
- extern "C" {
60
- #endif
61
-
62
- /* Public options. Some are compile-time only, some are run-time only, and some
63
- are both. Most of the compile-time options are saved with the compiled regex so
64
- that they can be inspected during studying (and therefore JIT compiling). Note
65
- that pcre_study() has its own set of options. Originally, all the options
66
- defined here used distinct bits. However, almost all the bits in a 32-bit word
67
- are now used, so in order to conserve them, option bits that were previously
68
- only recognized at matching time (i.e. by pcre_exec() or pcre_dfa_exec()) may
69
- also be used for compile-time options that affect only compiling and are not
70
- relevant for studying or JIT compiling.
71
-
72
- Some options for pcre_compile() change its behaviour but do not affect the
73
- behaviour of the execution functions. Other options are passed through to the
74
- execution functions and affect their behaviour, with or without affecting the
75
- behaviour of pcre_compile().
76
-
77
- Options that can be passed to pcre_compile() are tagged Cx below, with these
78
- variants:
79
-
80
- C1 Affects compile only
81
- C2 Does not affect compile; affects exec, dfa_exec
82
- C3 Affects compile, exec, dfa_exec
83
- C4 Affects compile, exec, dfa_exec, study
84
- C5 Affects compile, exec, study
85
-
86
- Options that can be set for pcre_exec() and/or pcre_dfa_exec() are flagged with
87
- E and D, respectively. They take precedence over C3, C4, and C5 settings passed
88
- from pcre_compile(). Those that are compatible with JIT execution are flagged
89
- with J. */
90
-
91
- #define PCRE_CASELESS 0x00000001 /* C1 */
92
- #define PCRE_MULTILINE 0x00000002 /* C1 */
93
- #define PCRE_DOTALL 0x00000004 /* C1 */
94
- #define PCRE_EXTENDED 0x00000008 /* C1 */
95
- #define PCRE_ANCHORED 0x00000010 /* C4 E D */
96
- #define PCRE_DOLLAR_ENDONLY 0x00000020 /* C2 */
97
- #define PCRE_EXTRA 0x00000040 /* C1 */
98
- #define PCRE_NOTBOL 0x00000080 /* E D J */
99
- #define PCRE_NOTEOL 0x00000100 /* E D J */
100
- #define PCRE_UNGREEDY 0x00000200 /* C1 */
101
- #define PCRE_NOTEMPTY 0x00000400 /* E D J */
102
- #define PCRE_UTF8 0x00000800 /* C4 ) */
103
- #define PCRE_UTF16 0x00000800 /* C4 ) Synonyms */
104
- #define PCRE_UTF32 0x00000800 /* C4 ) */
105
- #define PCRE_NO_AUTO_CAPTURE 0x00001000 /* C1 */
106
- #define PCRE_NO_UTF8_CHECK 0x00002000 /* C1 E D J ) */
107
- #define PCRE_NO_UTF16_CHECK 0x00002000 /* C1 E D J ) Synonyms */
108
- #define PCRE_NO_UTF32_CHECK 0x00002000 /* C1 E D J ) */
109
- #define PCRE_AUTO_CALLOUT 0x00004000 /* C1 */
110
- #define PCRE_PARTIAL_SOFT 0x00008000 /* E D J ) Synonyms */
111
- #define PCRE_PARTIAL 0x00008000 /* E D J ) */
112
-
113
- /* This pair use the same bit. */
114
- #define PCRE_NEVER_UTF 0x00010000 /* C1 ) Overlaid */
115
- #define PCRE_DFA_SHORTEST 0x00010000 /* D ) Overlaid */
116
-
117
- /* This pair use the same bit. */
118
- #define PCRE_NO_AUTO_POSSESS 0x00020000 /* C1 ) Overlaid */
119
- #define PCRE_DFA_RESTART 0x00020000 /* D ) Overlaid */
120
-
121
- #define PCRE_FIRSTLINE 0x00040000 /* C3 */
122
- #define PCRE_DUPNAMES 0x00080000 /* C1 */
123
- #define PCRE_NEWLINE_CR 0x00100000 /* C3 E D */
124
- #define PCRE_NEWLINE_LF 0x00200000 /* C3 E D */
125
- #define PCRE_NEWLINE_CRLF 0x00300000 /* C3 E D */
126
- #define PCRE_NEWLINE_ANY 0x00400000 /* C3 E D */
127
- #define PCRE_NEWLINE_ANYCRLF 0x00500000 /* C3 E D */
128
- #define PCRE_BSR_ANYCRLF 0x00800000 /* C3 E D */
129
- #define PCRE_BSR_UNICODE 0x01000000 /* C3 E D */
130
- #define PCRE_JAVASCRIPT_COMPAT 0x02000000 /* C5 */
131
- #define PCRE_NO_START_OPTIMIZE 0x04000000 /* C2 E D ) Synonyms */
132
- #define PCRE_NO_START_OPTIMISE 0x04000000 /* C2 E D ) */
133
- #define PCRE_PARTIAL_HARD 0x08000000 /* E D J */
134
- #define PCRE_NOTEMPTY_ATSTART 0x10000000 /* E D J */
135
- #define PCRE_UCP 0x20000000 /* C3 */
136
-
137
- /* Exec-time and get/set-time error codes */
138
-
139
- #define PCRE_ERROR_NOMATCH (-1)
140
- #define PCRE_ERROR_NULL (-2)
141
- #define PCRE_ERROR_BADOPTION (-3)
142
- #define PCRE_ERROR_BADMAGIC (-4)
143
- #define PCRE_ERROR_UNKNOWN_OPCODE (-5)
144
- #define PCRE_ERROR_UNKNOWN_NODE (-5) /* For backward compatibility */
145
- #define PCRE_ERROR_NOMEMORY (-6)
146
- #define PCRE_ERROR_NOSUBSTRING (-7)
147
- #define PCRE_ERROR_MATCHLIMIT (-8)
148
- #define PCRE_ERROR_CALLOUT (-9) /* Never used by PCRE itself */
149
- #define PCRE_ERROR_BADUTF8 (-10) /* Same for 8/16/32 */
150
- #define PCRE_ERROR_BADUTF16 (-10) /* Same for 8/16/32 */
151
- #define PCRE_ERROR_BADUTF32 (-10) /* Same for 8/16/32 */
152
- #define PCRE_ERROR_BADUTF8_OFFSET (-11) /* Same for 8/16 */
153
- #define PCRE_ERROR_BADUTF16_OFFSET (-11) /* Same for 8/16 */
154
- #define PCRE_ERROR_PARTIAL (-12)
155
- #define PCRE_ERROR_BADPARTIAL (-13)
156
- #define PCRE_ERROR_INTERNAL (-14)
157
- #define PCRE_ERROR_BADCOUNT (-15)
158
- #define PCRE_ERROR_DFA_UITEM (-16)
159
- #define PCRE_ERROR_DFA_UCOND (-17)
160
- #define PCRE_ERROR_DFA_UMLIMIT (-18)
161
- #define PCRE_ERROR_DFA_WSSIZE (-19)
162
- #define PCRE_ERROR_DFA_RECURSE (-20)
163
- #define PCRE_ERROR_RECURSIONLIMIT (-21)
164
- #define PCRE_ERROR_NULLWSLIMIT (-22) /* No longer actually used */
165
- #define PCRE_ERROR_BADNEWLINE (-23)
166
- #define PCRE_ERROR_BADOFFSET (-24)
167
- #define PCRE_ERROR_SHORTUTF8 (-25)
168
- #define PCRE_ERROR_SHORTUTF16 (-25) /* Same for 8/16 */
169
- #define PCRE_ERROR_RECURSELOOP (-26)
170
- #define PCRE_ERROR_JIT_STACKLIMIT (-27)
171
- #define PCRE_ERROR_BADMODE (-28)
172
- #define PCRE_ERROR_BADENDIANNESS (-29)
173
- #define PCRE_ERROR_DFA_BADRESTART (-30)
174
- #define PCRE_ERROR_JIT_BADOPTION (-31)
175
- #define PCRE_ERROR_BADLENGTH (-32)
176
- #define PCRE_ERROR_UNSET (-33)
177
-
178
- /* Specific error codes for UTF-8 validity checks */
179
-
180
- #define PCRE_UTF8_ERR0 0
181
- #define PCRE_UTF8_ERR1 1
182
- #define PCRE_UTF8_ERR2 2
183
- #define PCRE_UTF8_ERR3 3
184
- #define PCRE_UTF8_ERR4 4
185
- #define PCRE_UTF8_ERR5 5
186
- #define PCRE_UTF8_ERR6 6
187
- #define PCRE_UTF8_ERR7 7
188
- #define PCRE_UTF8_ERR8 8
189
- #define PCRE_UTF8_ERR9 9
190
- #define PCRE_UTF8_ERR10 10
191
- #define PCRE_UTF8_ERR11 11
192
- #define PCRE_UTF8_ERR12 12
193
- #define PCRE_UTF8_ERR13 13
194
- #define PCRE_UTF8_ERR14 14
195
- #define PCRE_UTF8_ERR15 15
196
- #define PCRE_UTF8_ERR16 16
197
- #define PCRE_UTF8_ERR17 17
198
- #define PCRE_UTF8_ERR18 18
199
- #define PCRE_UTF8_ERR19 19
200
- #define PCRE_UTF8_ERR20 20
201
- #define PCRE_UTF8_ERR21 21
202
- #define PCRE_UTF8_ERR22 22 /* Unused (was non-character) */
203
-
204
- /* Specific error codes for UTF-16 validity checks */
205
-
206
- #define PCRE_UTF16_ERR0 0
207
- #define PCRE_UTF16_ERR1 1
208
- #define PCRE_UTF16_ERR2 2
209
- #define PCRE_UTF16_ERR3 3
210
- #define PCRE_UTF16_ERR4 4 /* Unused (was non-character) */
211
-
212
- /* Specific error codes for UTF-32 validity checks */
213
-
214
- #define PCRE_UTF32_ERR0 0
215
- #define PCRE_UTF32_ERR1 1
216
- #define PCRE_UTF32_ERR2 2 /* Unused (was non-character) */
217
- #define PCRE_UTF32_ERR3 3
218
-
219
- /* Request types for pcre_fullinfo() */
220
-
221
- #define PCRE_INFO_OPTIONS 0
222
- #define PCRE_INFO_SIZE 1
223
- #define PCRE_INFO_CAPTURECOUNT 2
224
- #define PCRE_INFO_BACKREFMAX 3
225
- #define PCRE_INFO_FIRSTBYTE 4
226
- #define PCRE_INFO_FIRSTCHAR 4 /* For backwards compatibility */
227
- #define PCRE_INFO_FIRSTTABLE 5
228
- #define PCRE_INFO_LASTLITERAL 6
229
- #define PCRE_INFO_NAMEENTRYSIZE 7
230
- #define PCRE_INFO_NAMECOUNT 8
231
- #define PCRE_INFO_NAMETABLE 9
232
- #define PCRE_INFO_STUDYSIZE 10
233
- #define PCRE_INFO_DEFAULT_TABLES 11
234
- #define PCRE_INFO_OKPARTIAL 12
235
- #define PCRE_INFO_JCHANGED 13
236
- #define PCRE_INFO_HASCRORLF 14
237
- #define PCRE_INFO_MINLENGTH 15
238
- #define PCRE_INFO_JIT 16
239
- #define PCRE_INFO_JITSIZE 17
240
- #define PCRE_INFO_MAXLOOKBEHIND 18
241
- #define PCRE_INFO_FIRSTCHARACTER 19
242
- #define PCRE_INFO_FIRSTCHARACTERFLAGS 20
243
- #define PCRE_INFO_REQUIREDCHAR 21
244
- #define PCRE_INFO_REQUIREDCHARFLAGS 22
245
- #define PCRE_INFO_MATCHLIMIT 23
246
- #define PCRE_INFO_RECURSIONLIMIT 24
247
- #define PCRE_INFO_MATCH_EMPTY 25
248
-
249
- /* Request types for pcre_config(). Do not re-arrange, in order to remain
250
- compatible. */
251
-
252
- #define PCRE_CONFIG_UTF8 0
253
- #define PCRE_CONFIG_NEWLINE 1
254
- #define PCRE_CONFIG_LINK_SIZE 2
255
- #define PCRE_CONFIG_POSIX_MALLOC_THRESHOLD 3
256
- #define PCRE_CONFIG_MATCH_LIMIT 4
257
- #define PCRE_CONFIG_STACKRECURSE 5
258
- #define PCRE_CONFIG_UNICODE_PROPERTIES 6
259
- #define PCRE_CONFIG_MATCH_LIMIT_RECURSION 7
260
- #define PCRE_CONFIG_BSR 8
261
- #define PCRE_CONFIG_JIT 9
262
- #define PCRE_CONFIG_UTF16 10
263
- #define PCRE_CONFIG_JITTARGET 11
264
- #define PCRE_CONFIG_UTF32 12
265
- #define PCRE_CONFIG_PARENS_LIMIT 13
266
-
267
- /* Request types for pcre_study(). Do not re-arrange, in order to remain
268
- compatible. */
269
-
270
- #define PCRE_STUDY_JIT_COMPILE 0x0001
271
- #define PCRE_STUDY_JIT_PARTIAL_SOFT_COMPILE 0x0002
272
- #define PCRE_STUDY_JIT_PARTIAL_HARD_COMPILE 0x0004
273
- #define PCRE_STUDY_EXTRA_NEEDED 0x0008
274
-
275
- /* Bit flags for the pcre[16|32]_extra structure. Do not re-arrange or redefine
276
- these bits, just add new ones on the end, in order to remain compatible. */
277
-
278
- #define PCRE_EXTRA_STUDY_DATA 0x0001
279
- #define PCRE_EXTRA_MATCH_LIMIT 0x0002
280
- #define PCRE_EXTRA_CALLOUT_DATA 0x0004
281
- #define PCRE_EXTRA_TABLES 0x0008
282
- #define PCRE_EXTRA_MATCH_LIMIT_RECURSION 0x0010
283
- #define PCRE_EXTRA_MARK 0x0020
284
- #define PCRE_EXTRA_EXECUTABLE_JIT 0x0040
285
-
286
- /* Types */
287
-
288
- struct real_pcre8_or_16; /* declaration; the definition is private */
289
- typedef struct real_pcre8_or_16 pcre;
290
-
291
- struct real_pcre8_or_16; /* declaration; the definition is private */
292
- typedef struct real_pcre8_or_16 pcre16;
293
-
294
- struct real_pcre32; /* declaration; the definition is private */
295
- typedef struct real_pcre32 pcre32;
296
-
297
- struct real_pcre_jit_stack; /* declaration; the definition is private */
298
- typedef struct real_pcre_jit_stack pcre_jit_stack;
299
-
300
- struct real_pcre16_jit_stack; /* declaration; the definition is private */
301
- typedef struct real_pcre16_jit_stack pcre16_jit_stack;
302
-
303
- struct real_pcre32_jit_stack; /* declaration; the definition is private */
304
- typedef struct real_pcre32_jit_stack pcre32_jit_stack;
305
-
306
- /* If PCRE is compiled with 16 bit character support, PCRE_UCHAR16 must contain
307
- a 16 bit wide signed data type. Otherwise it can be a dummy data type since
308
- pcre16 functions are not implemented. There is a check for this in pcre_internal.h. */
309
- #ifndef PCRE_UCHAR16
310
- #define PCRE_UCHAR16 unsigned short
311
- #endif
312
-
313
- #ifndef PCRE_SPTR16
314
- #define PCRE_SPTR16 const PCRE_UCHAR16 *
315
- #endif
316
-
317
- /* If PCRE is compiled with 32 bit character support, PCRE_UCHAR32 must contain
318
- a 32 bit wide signed data type. Otherwise it can be a dummy data type since
319
- pcre32 functions are not implemented. There is a check for this in pcre_internal.h. */
320
- #ifndef PCRE_UCHAR32
321
- #define PCRE_UCHAR32 unsigned int
322
- #endif
323
-
324
- #ifndef PCRE_SPTR32
325
- #define PCRE_SPTR32 const PCRE_UCHAR32 *
326
- #endif
327
-
328
- /* When PCRE is compiled as a C++ library, the subject pointer type can be
329
- replaced with a custom type. For conventional use, the public interface is a
330
- const char *. */
331
-
332
- #ifndef PCRE_SPTR
333
- #define PCRE_SPTR const char *
334
- #endif
335
-
336
- /* The structure for passing additional data to pcre_exec(). This is defined in
337
- such as way as to be extensible. Always add new fields at the end, in order to
338
- remain compatible. */
339
-
340
- typedef struct pcre_extra {
341
- unsigned long int flags; /* Bits for which fields are set */
342
- void *study_data; /* Opaque data from pcre_study() */
343
- unsigned long int match_limit; /* Maximum number of calls to match() */
344
- void *callout_data; /* Data passed back in callouts */
345
- const unsigned char *tables; /* Pointer to character tables */
346
- unsigned long int match_limit_recursion; /* Max recursive calls to match() */
347
- unsigned char **mark; /* For passing back a mark pointer */
348
- void *executable_jit; /* Contains a pointer to a compiled jit code */
349
- } pcre_extra;
350
-
351
- /* Same structure as above, but with 16 bit char pointers. */
352
-
353
- typedef struct pcre16_extra {
354
- unsigned long int flags; /* Bits for which fields are set */
355
- void *study_data; /* Opaque data from pcre_study() */
356
- unsigned long int match_limit; /* Maximum number of calls to match() */
357
- void *callout_data; /* Data passed back in callouts */
358
- const unsigned char *tables; /* Pointer to character tables */
359
- unsigned long int match_limit_recursion; /* Max recursive calls to match() */
360
- PCRE_UCHAR16 **mark; /* For passing back a mark pointer */
361
- void *executable_jit; /* Contains a pointer to a compiled jit code */
362
- } pcre16_extra;
363
-
364
- /* Same structure as above, but with 32 bit char pointers. */
365
-
366
- typedef struct pcre32_extra {
367
- unsigned long int flags; /* Bits for which fields are set */
368
- void *study_data; /* Opaque data from pcre_study() */
369
- unsigned long int match_limit; /* Maximum number of calls to match() */
370
- void *callout_data; /* Data passed back in callouts */
371
- const unsigned char *tables; /* Pointer to character tables */
372
- unsigned long int match_limit_recursion; /* Max recursive calls to match() */
373
- PCRE_UCHAR32 **mark; /* For passing back a mark pointer */
374
- void *executable_jit; /* Contains a pointer to a compiled jit code */
375
- } pcre32_extra;
376
-
377
- /* The structure for passing out data via the pcre_callout_function. We use a
378
- structure so that new fields can be added on the end in future versions,
379
- without changing the API of the function, thereby allowing old clients to work
380
- without modification. */
381
-
382
- typedef struct pcre_callout_block {
383
- int version; /* Identifies version of block */
384
- /* ------------------------ Version 0 ------------------------------- */
385
- int callout_number; /* Number compiled into pattern */
386
- int *offset_vector; /* The offset vector */
387
- PCRE_SPTR subject; /* The subject being matched */
388
- int subject_length; /* The length of the subject */
389
- int start_match; /* Offset to start of this match attempt */
390
- int current_position; /* Where we currently are in the subject */
391
- int capture_top; /* Max current capture */
392
- int capture_last; /* Most recently closed capture */
393
- void *callout_data; /* Data passed in with the call */
394
- /* ------------------- Added for Version 1 -------------------------- */
395
- int pattern_position; /* Offset to next item in the pattern */
396
- int next_item_length; /* Length of next item in the pattern */
397
- /* ------------------- Added for Version 2 -------------------------- */
398
- const unsigned char *mark; /* Pointer to current mark or NULL */
399
- /* ------------------------------------------------------------------ */
400
- } pcre_callout_block;
401
-
402
- /* Same structure as above, but with 16 bit char pointers. */
403
-
404
- typedef struct pcre16_callout_block {
405
- int version; /* Identifies version of block */
406
- /* ------------------------ Version 0 ------------------------------- */
407
- int callout_number; /* Number compiled into pattern */
408
- int *offset_vector; /* The offset vector */
409
- PCRE_SPTR16 subject; /* The subject being matched */
410
- int subject_length; /* The length of the subject */
411
- int start_match; /* Offset to start of this match attempt */
412
- int current_position; /* Where we currently are in the subject */
413
- int capture_top; /* Max current capture */
414
- int capture_last; /* Most recently closed capture */
415
- void *callout_data; /* Data passed in with the call */
416
- /* ------------------- Added for Version 1 -------------------------- */
417
- int pattern_position; /* Offset to next item in the pattern */
418
- int next_item_length; /* Length of next item in the pattern */
419
- /* ------------------- Added for Version 2 -------------------------- */
420
- const PCRE_UCHAR16 *mark; /* Pointer to current mark or NULL */
421
- /* ------------------------------------------------------------------ */
422
- } pcre16_callout_block;
423
-
424
- /* Same structure as above, but with 32 bit char pointers. */
425
-
426
- typedef struct pcre32_callout_block {
427
- int version; /* Identifies version of block */
428
- /* ------------------------ Version 0 ------------------------------- */
429
- int callout_number; /* Number compiled into pattern */
430
- int *offset_vector; /* The offset vector */
431
- PCRE_SPTR32 subject; /* The subject being matched */
432
- int subject_length; /* The length of the subject */
433
- int start_match; /* Offset to start of this match attempt */
434
- int current_position; /* Where we currently are in the subject */
435
- int capture_top; /* Max current capture */
436
- int capture_last; /* Most recently closed capture */
437
- void *callout_data; /* Data passed in with the call */
438
- /* ------------------- Added for Version 1 -------------------------- */
439
- int pattern_position; /* Offset to next item in the pattern */
440
- int next_item_length; /* Length of next item in the pattern */
441
- /* ------------------- Added for Version 2 -------------------------- */
442
- const PCRE_UCHAR32 *mark; /* Pointer to current mark or NULL */
443
- /* ------------------------------------------------------------------ */
444
- } pcre32_callout_block;
445
-
446
- /* Indirection for store get and free functions. These can be set to
447
- alternative malloc/free functions if required. Special ones are used in the
448
- non-recursive case for "frames". There is also an optional callout function
449
- that is triggered by the (?) regex item. For Virtual Pascal, these definitions
450
- have to take another form. */
451
-
452
- #ifndef VPCOMPAT
453
- PCRE_EXP_DECL void *(*pcre_malloc)(size_t);
454
- PCRE_EXP_DECL void (*pcre_free)(void *);
455
- PCRE_EXP_DECL void *(*pcre_stack_malloc)(size_t);
456
- PCRE_EXP_DECL void (*pcre_stack_free)(void *);
457
- PCRE_EXP_DECL int (*pcre_callout)(pcre_callout_block *);
458
- PCRE_EXP_DECL int (*pcre_stack_guard)(void);
459
-
460
- PCRE_EXP_DECL void *(*pcre16_malloc)(size_t);
461
- PCRE_EXP_DECL void (*pcre16_free)(void *);
462
- PCRE_EXP_DECL void *(*pcre16_stack_malloc)(size_t);
463
- PCRE_EXP_DECL void (*pcre16_stack_free)(void *);
464
- PCRE_EXP_DECL int (*pcre16_callout)(pcre16_callout_block *);
465
- PCRE_EXP_DECL int (*pcre16_stack_guard)(void);
466
-
467
- PCRE_EXP_DECL void *(*pcre32_malloc)(size_t);
468
- PCRE_EXP_DECL void (*pcre32_free)(void *);
469
- PCRE_EXP_DECL void *(*pcre32_stack_malloc)(size_t);
470
- PCRE_EXP_DECL void (*pcre32_stack_free)(void *);
471
- PCRE_EXP_DECL int (*pcre32_callout)(pcre32_callout_block *);
472
- PCRE_EXP_DECL int (*pcre32_stack_guard)(void);
473
- #else /* VPCOMPAT */
474
- PCRE_EXP_DECL void *pcre_malloc(size_t);
475
- PCRE_EXP_DECL void pcre_free(void *);
476
- PCRE_EXP_DECL void *pcre_stack_malloc(size_t);
477
- PCRE_EXP_DECL void pcre_stack_free(void *);
478
- PCRE_EXP_DECL int pcre_callout(pcre_callout_block *);
479
- PCRE_EXP_DECL int pcre_stack_guard(void);
480
-
481
- PCRE_EXP_DECL void *pcre16_malloc(size_t);
482
- PCRE_EXP_DECL void pcre16_free(void *);
483
- PCRE_EXP_DECL void *pcre16_stack_malloc(size_t);
484
- PCRE_EXP_DECL void pcre16_stack_free(void *);
485
- PCRE_EXP_DECL int pcre16_callout(pcre16_callout_block *);
486
- PCRE_EXP_DECL int pcre16_stack_guard(void);
487
-
488
- PCRE_EXP_DECL void *pcre32_malloc(size_t);
489
- PCRE_EXP_DECL void pcre32_free(void *);
490
- PCRE_EXP_DECL void *pcre32_stack_malloc(size_t);
491
- PCRE_EXP_DECL void pcre32_stack_free(void *);
492
- PCRE_EXP_DECL int pcre32_callout(pcre32_callout_block *);
493
- PCRE_EXP_DECL int pcre32_stack_guard(void);
494
- #endif /* VPCOMPAT */
495
-
496
- /* User defined callback which provides a stack just before the match starts. */
497
-
498
- typedef pcre_jit_stack *(*pcre_jit_callback)(void *);
499
- typedef pcre16_jit_stack *(*pcre16_jit_callback)(void *);
500
- typedef pcre32_jit_stack *(*pcre32_jit_callback)(void *);
501
-
502
- /* Exported PCRE functions */
503
-
504
- PCRE_EXP_DECL pcre *pcre_compile(const char *, int, const char **, int *,
505
- const unsigned char *);
506
- PCRE_EXP_DECL pcre16 *pcre16_compile(PCRE_SPTR16, int, const char **, int *,
507
- const unsigned char *);
508
- PCRE_EXP_DECL pcre32 *pcre32_compile(PCRE_SPTR32, int, const char **, int *,
509
- const unsigned char *);
510
- PCRE_EXP_DECL pcre *pcre_compile2(const char *, int, int *, const char **,
511
- int *, const unsigned char *);
512
- PCRE_EXP_DECL pcre16 *pcre16_compile2(PCRE_SPTR16, int, int *, const char **,
513
- int *, const unsigned char *);
514
- PCRE_EXP_DECL pcre32 *pcre32_compile2(PCRE_SPTR32, int, int *, const char **,
515
- int *, const unsigned char *);
516
- PCRE_EXP_DECL int pcre_config(int, void *);
517
- PCRE_EXP_DECL int pcre16_config(int, void *);
518
- PCRE_EXP_DECL int pcre32_config(int, void *);
519
- PCRE_EXP_DECL int pcre_copy_named_substring(const pcre *, const char *,
520
- int *, int, const char *, char *, int);
521
- PCRE_EXP_DECL int pcre16_copy_named_substring(const pcre16 *, PCRE_SPTR16,
522
- int *, int, PCRE_SPTR16, PCRE_UCHAR16 *, int);
523
- PCRE_EXP_DECL int pcre32_copy_named_substring(const pcre32 *, PCRE_SPTR32,
524
- int *, int, PCRE_SPTR32, PCRE_UCHAR32 *, int);
525
- PCRE_EXP_DECL int pcre_copy_substring(const char *, int *, int, int,
526
- char *, int);
527
- PCRE_EXP_DECL int pcre16_copy_substring(PCRE_SPTR16, int *, int, int,
528
- PCRE_UCHAR16 *, int);
529
- PCRE_EXP_DECL int pcre32_copy_substring(PCRE_SPTR32, int *, int, int,
530
- PCRE_UCHAR32 *, int);
531
- PCRE_EXP_DECL int pcre_dfa_exec(const pcre *, const pcre_extra *,
532
- const char *, int, int, int, int *, int , int *, int);
533
- PCRE_EXP_DECL int pcre16_dfa_exec(const pcre16 *, const pcre16_extra *,
534
- PCRE_SPTR16, int, int, int, int *, int , int *, int);
535
- PCRE_EXP_DECL int pcre32_dfa_exec(const pcre32 *, const pcre32_extra *,
536
- PCRE_SPTR32, int, int, int, int *, int , int *, int);
537
- PCRE_EXP_DECL int pcre_exec(const pcre *, const pcre_extra *, PCRE_SPTR,
538
- int, int, int, int *, int);
539
- PCRE_EXP_DECL int pcre16_exec(const pcre16 *, const pcre16_extra *,
540
- PCRE_SPTR16, int, int, int, int *, int);
541
- PCRE_EXP_DECL int pcre32_exec(const pcre32 *, const pcre32_extra *,
542
- PCRE_SPTR32, int, int, int, int *, int);
543
- PCRE_EXP_DECL int pcre_jit_exec(const pcre *, const pcre_extra *,
544
- PCRE_SPTR, int, int, int, int *, int,
545
- pcre_jit_stack *);
546
- PCRE_EXP_DECL int pcre16_jit_exec(const pcre16 *, const pcre16_extra *,
547
- PCRE_SPTR16, int, int, int, int *, int,
548
- pcre16_jit_stack *);
549
- PCRE_EXP_DECL int pcre32_jit_exec(const pcre32 *, const pcre32_extra *,
550
- PCRE_SPTR32, int, int, int, int *, int,
551
- pcre32_jit_stack *);
552
- PCRE_EXP_DECL void pcre_free_substring(const char *);
553
- PCRE_EXP_DECL void pcre16_free_substring(PCRE_SPTR16);
554
- PCRE_EXP_DECL void pcre32_free_substring(PCRE_SPTR32);
555
- PCRE_EXP_DECL void pcre_free_substring_list(const char **);
556
- PCRE_EXP_DECL void pcre16_free_substring_list(PCRE_SPTR16 *);
557
- PCRE_EXP_DECL void pcre32_free_substring_list(PCRE_SPTR32 *);
558
- PCRE_EXP_DECL int pcre_fullinfo(const pcre *, const pcre_extra *, int,
559
- void *);
560
- PCRE_EXP_DECL int pcre16_fullinfo(const pcre16 *, const pcre16_extra *, int,
561
- void *);
562
- PCRE_EXP_DECL int pcre32_fullinfo(const pcre32 *, const pcre32_extra *, int,
563
- void *);
564
- PCRE_EXP_DECL int pcre_get_named_substring(const pcre *, const char *,
565
- int *, int, const char *, const char **);
566
- PCRE_EXP_DECL int pcre16_get_named_substring(const pcre16 *, PCRE_SPTR16,
567
- int *, int, PCRE_SPTR16, PCRE_SPTR16 *);
568
- PCRE_EXP_DECL int pcre32_get_named_substring(const pcre32 *, PCRE_SPTR32,
569
- int *, int, PCRE_SPTR32, PCRE_SPTR32 *);
570
- PCRE_EXP_DECL int pcre_get_stringnumber(const pcre *, const char *);
571
- PCRE_EXP_DECL int pcre16_get_stringnumber(const pcre16 *, PCRE_SPTR16);
572
- PCRE_EXP_DECL int pcre32_get_stringnumber(const pcre32 *, PCRE_SPTR32);
573
- PCRE_EXP_DECL int pcre_get_stringtable_entries(const pcre *, const char *,
574
- char **, char **);
575
- PCRE_EXP_DECL int pcre16_get_stringtable_entries(const pcre16 *, PCRE_SPTR16,
576
- PCRE_UCHAR16 **, PCRE_UCHAR16 **);
577
- PCRE_EXP_DECL int pcre32_get_stringtable_entries(const pcre32 *, PCRE_SPTR32,
578
- PCRE_UCHAR32 **, PCRE_UCHAR32 **);
579
- PCRE_EXP_DECL int pcre_get_substring(const char *, int *, int, int,
580
- const char **);
581
- PCRE_EXP_DECL int pcre16_get_substring(PCRE_SPTR16, int *, int, int,
582
- PCRE_SPTR16 *);
583
- PCRE_EXP_DECL int pcre32_get_substring(PCRE_SPTR32, int *, int, int,
584
- PCRE_SPTR32 *);
585
- PCRE_EXP_DECL int pcre_get_substring_list(const char *, int *, int,
586
- const char ***);
587
- PCRE_EXP_DECL int pcre16_get_substring_list(PCRE_SPTR16, int *, int,
588
- PCRE_SPTR16 **);
589
- PCRE_EXP_DECL int pcre32_get_substring_list(PCRE_SPTR32, int *, int,
590
- PCRE_SPTR32 **);
591
- PCRE_EXP_DECL const unsigned char *pcre_maketables(void);
592
- PCRE_EXP_DECL const unsigned char *pcre16_maketables(void);
593
- PCRE_EXP_DECL const unsigned char *pcre32_maketables(void);
594
- PCRE_EXP_DECL int pcre_refcount(pcre *, int);
595
- PCRE_EXP_DECL int pcre16_refcount(pcre16 *, int);
596
- PCRE_EXP_DECL int pcre32_refcount(pcre32 *, int);
597
- PCRE_EXP_DECL pcre_extra *pcre_study(const pcre *, int, const char **);
598
- PCRE_EXP_DECL pcre16_extra *pcre16_study(const pcre16 *, int, const char **);
599
- PCRE_EXP_DECL pcre32_extra *pcre32_study(const pcre32 *, int, const char **);
600
- PCRE_EXP_DECL void pcre_free_study(pcre_extra *);
601
- PCRE_EXP_DECL void pcre16_free_study(pcre16_extra *);
602
- PCRE_EXP_DECL void pcre32_free_study(pcre32_extra *);
603
- PCRE_EXP_DECL const char *pcre_version(void);
604
- PCRE_EXP_DECL const char *pcre16_version(void);
605
- PCRE_EXP_DECL const char *pcre32_version(void);
606
-
607
- /* Utility functions for byte order swaps. */
608
- PCRE_EXP_DECL int pcre_pattern_to_host_byte_order(pcre *, pcre_extra *,
609
- const unsigned char *);
610
- PCRE_EXP_DECL int pcre16_pattern_to_host_byte_order(pcre16 *, pcre16_extra *,
611
- const unsigned char *);
612
- PCRE_EXP_DECL int pcre32_pattern_to_host_byte_order(pcre32 *, pcre32_extra *,
613
- const unsigned char *);
614
- PCRE_EXP_DECL int pcre16_utf16_to_host_byte_order(PCRE_UCHAR16 *,
615
- PCRE_SPTR16, int, int *, int);
616
- PCRE_EXP_DECL int pcre32_utf32_to_host_byte_order(PCRE_UCHAR32 *,
617
- PCRE_SPTR32, int, int *, int);
618
-
619
- /* JIT compiler related functions. */
620
-
621
- PCRE_EXP_DECL pcre_jit_stack *pcre_jit_stack_alloc(int, int);
622
- PCRE_EXP_DECL pcre16_jit_stack *pcre16_jit_stack_alloc(int, int);
623
- PCRE_EXP_DECL pcre32_jit_stack *pcre32_jit_stack_alloc(int, int);
624
- PCRE_EXP_DECL void pcre_jit_stack_free(pcre_jit_stack *);
625
- PCRE_EXP_DECL void pcre16_jit_stack_free(pcre16_jit_stack *);
626
- PCRE_EXP_DECL void pcre32_jit_stack_free(pcre32_jit_stack *);
627
- PCRE_EXP_DECL void pcre_assign_jit_stack(pcre_extra *,
628
- pcre_jit_callback, void *);
629
- PCRE_EXP_DECL void pcre16_assign_jit_stack(pcre16_extra *,
630
- pcre16_jit_callback, void *);
631
- PCRE_EXP_DECL void pcre32_assign_jit_stack(pcre32_extra *,
632
- pcre32_jit_callback, void *);
633
- PCRE_EXP_DECL void pcre_jit_free_unused_memory(void);
634
- PCRE_EXP_DECL void pcre16_jit_free_unused_memory(void);
635
- PCRE_EXP_DECL void pcre32_jit_free_unused_memory(void);
636
-
637
- #ifdef __cplusplus
638
- } /* extern "C" */
639
- #endif
640
-
641
- #endif /* End of pcre.h */