Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
anon 0c2f494d6b . 7 meses atrás
benchmark benchmark/make is no longer a trap 8 meses atrás
debug debuging stuff 8 meses atrás
documentation +todos 7 meses atrás
source readability 7 meses atrás
.gdbinit debuging stuff 8 meses atrás
.gitignore . 7 meses atrás
Makefile bugs go on and on, and they dont end 7 meses atrás
README.md some more documentation 8 meses atrás

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>]