No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
anon 0e99ecb8d8 yet more work on the docs hace 8 meses
benchmark benchmark/make is no longer a trap hace 8 meses
debug follow type naming convention hace 8 meses
documentation yet more work on the docs hace 8 meses
source readability hace 8 meses
.gdbinit debuging stuff hace 8 meses
.gitignore . hace 8 meses
Makefile clean target hace 8 meses
README.md some more documentation hace 8 meses

README.md

Jëger

A regex engine.

Syntax

The aim was to follow Vim's regex syntax. Esoteric special characters such as “\zs” are not implemented, however the just is supported.

match_t * regex_match(const regex_t * const regex, const char * const string, const bool start_of_string);

Returns a sentinel terminated array of match_t objects. The sentinel object is defined as (match_t){ .position = -1, .width = -1, };. The position and width of non-sentinel match_ts is guaranteed to be => 0.

Symbol Meaning (TODO: fill in)
.
=
+
*
?
\<
\>
^
\t
\n
\b
\i
\I
\k
\K
\f
\F
\p
\P
\s
\d
\D
\x
\X
\o
\O
\w
\W
\h
\a
\l
\L
\u
\U
[<range>]
[^<range>]