mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-14 02:05:17 +00:00
[MOD/ADD] Use glob-like system for admins.
This commit is contained in:
parent
0fc0fdd6f4
commit
95aaa0dbc9
10 changed files with 154 additions and 13 deletions
10
src/include/Glob.h
Normal file
10
src/include/Glob.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#ifndef PARSEE_GLOB_H
|
||||
#define PARSEE_GLOB_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
/* Verifies if a string matches a rule, as specified in
|
||||
* 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