[AYA] See alsos, live-alongs, more documentation

I need to work on _actual_ Parsee, now
This commit is contained in:
LDA 2024-08-05 15:23:33 +02:00
commit aa71c5cfeb
10 changed files with 302 additions and 45 deletions

View file

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