mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-14 01:55:16 +00:00
[AYA] See alsos, live-alongs, more documentation
I need to work on _actual_ Parsee, now
This commit is contained in:
parent
4fbdf05176
commit
aa71c5cfeb
10 changed files with 302 additions and 45 deletions
|
|
@ -1,10 +1,17 @@
|
|||
#ifndef PARSEE_GLOB_H
|
||||
#define PARSEE_GLOB_H
|
||||
/*-*
|
||||
* A simple Matrix globrule matcher.
|
||||
* -----------------
|
||||
* Written-By: LDA */
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
/* Verifies if a string matches a rule, as specified in
|
||||
* https://spec.matrix.org/v1.11/appendices/#glob-style-matching. */
|
||||
/** Verifies if a string matches a rule, as specified in the Matrix
|
||||
* specification on globrules.
|
||||
* -----------------
|
||||
* Returns: true if it does match, otherwise false
|
||||
* See-Also https://spec.matrix.org/v1.11/appendices/#glob-style-matching */
|
||||
extern bool GlobMatches(char *rule, char *string);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue