Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
anon 3bf23c07b5 follow type naming convention před 7 měsíci
benchmark benchmark/make is no longer a trap před 8 měsíci
debug follow type naming convention před 7 měsíci
documentation +todos před 7 měsíci
source readability před 7 měsíci
.gdbinit debuging stuff před 8 měsíci
.gitignore . před 7 měsíci
Makefile clean target před 7 měsíci
README.md some more documentation před 8 měsíci

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