pcre2_jit_stack_free.3 705 B

1234567891011121314151617181920212223242526272829303132
  1. .TH PCRE2_JIT_STACK_FREE 3 "28 June 2018" "PCRE2 10.32"
  2. .SH NAME
  3. PCRE2 - Perl-compatible regular expressions (revised API)
  4. .SH SYNOPSIS
  5. .rs
  6. .sp
  7. .B #include <pcre2.h>
  8. .PP
  9. .SM
  10. .B void pcre2_jit_stack_free(pcre2_jit_stack *\fIjit_stack\fP);
  11. .
  12. .SH DESCRIPTION
  13. .rs
  14. .sp
  15. This function is used to free a JIT stack that was created by
  16. \fBpcre2_jit_stack_create()\fP when it is no longer needed. If the argument is
  17. NULL, the function returns immediately without doing anything. For more
  18. details, see the
  19. .\" HREF
  20. \fBpcre2jit\fP
  21. .\"
  22. page.
  23. .P
  24. There is a complete description of the PCRE2 native API in the
  25. .\" HREF
  26. \fBpcre2api\fP
  27. .\"
  28. page and a description of the POSIX API in the
  29. .\" HREF
  30. \fBpcre2posix\fP
  31. .\"
  32. page.