diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-03-19 12:48:46 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-03-19 12:48:54 +0100 |
commit | cd9caf09d1878141871d46a5110648b119b7cb31 (patch) | |
tree | 6535c7cc53afc4dbe18026574076c63972d423c2 /lib/wrappers | |
parent | d3df1b8edaf22101bc7205cb8bb0a661ee3278a2 (diff) | |
download | Nim-cd9caf09d1878141871d46a5110648b119b7cb31.tar.gz |
pcre.nim: added pcre_free and removed hacks in nre and re.nim
Diffstat (limited to 'lib/wrappers')
-rw-r--r-- | lib/wrappers/pcre.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/wrappers/pcre.nim b/lib/wrappers/pcre.nim index c4bb24cfd..b7975abb8 100644 --- a/lib/wrappers/pcre.nim +++ b/lib/wrappers/pcre.nim @@ -341,6 +341,8 @@ proc compile2*(pattern: cstring, erroffset: ptr cint, tableptr: pointer): ptr Pcre +proc free*(p: ptr Pcre) + proc config*(what: cint, where: pointer): cint |