Skip to content

Commit

Permalink
minor doc adjustments.
Browse files Browse the repository at this point in the history
  • Loading branch information
agentzh committed Jul 4, 2015
1 parent a21f404 commit 8880ad3
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Name
====

libsregex - A non-backtracking regex engine library for large data streams
libsregex - A non-backtracking NFA/DFA-based regex engine library for matching on large data streams

Table of Contents
=================
Expand All @@ -10,11 +10,11 @@ Table of Contents
* [Status](#status)
* [Syntax Supported](#syntax-supported)
* [API](#api)
* [Constants](#constants)
* [Memory pool API](#memory-pool-api)
* [sre_create_pool](#sre_create_pool)
* [sre_destroy_pool](#sre_destroy_pool)
* [sre_reset_pool](#sre_reset_pool)
* [Constants](#constants)
* [Regex parsing and compilation API](#regex-parsing-and-compilation-api)
* [sre_regex_parse](#sre_regex_parse)
* [sre_regex_parse_multi](#sre_regex_parse_multi)
Expand Down Expand Up @@ -155,6 +155,20 @@ without notice.

[Back to TOC](#table-of-contents)

Constants
---------

This library provides the following public constants for use in the various API functions.

* `SRE_OK`
* `SRE_DECLINED`
* `SRE_AGAIN`
* `SRE_ERROR`

The actual meanings of these constants depend on the concrete API functions using them.

[Back to TOC](#table-of-contents)

Memory pool API
---------------

Expand Down Expand Up @@ -206,20 +220,6 @@ void sre_reset_pool(sre_pool_t *pool);
[Back to TOC](#table-of-contents)
Constants
---------
This library provides the following public constants for use in the various API functions.
* `SRE_OK`
* `SRE_DECLINED`
* `SRE_AGAIN`
* `SRE_ERROR`
The actual meanings of these constants depend on the concrete API functions using them.
[Back to TOC](#table-of-contents)
Regex parsing and compilation API
---------------------------------
Expand Down

0 comments on commit 8880ad3

Please sign in to comment.