NeoMutt  2023-03-22-27-g3cb248
Teaching an old dog new tricks
DOXYGEN
regex2.h
Go to the documentation of this file.
1
23#ifndef MUTT_CONFIG_REGEX2_H
24#define MUTT_CONFIG_REGEX2_H
25
26#include <stdint.h>
27
28struct Buffer;
29struct Regex;
30
31void regex_free(struct Regex **regex);
32struct Regex *regex_new (const char *str, uint32_t flags, struct Buffer *err);
33
34#endif /* MUTT_CONFIG_REGEX2_H */
struct Regex * regex_new(const char *str, uint32_t flags, struct Buffer *err)
Create an Regex from a string.
Definition: regex.c:80
void regex_free(struct Regex **regex)
Free a Regex object.
Definition: regex.c:48
String manipulation buffer.
Definition: buffer.h:34
Cached regular expression.
Definition: regex3.h:89
regex_t * regex
compiled expression
Definition: regex3.h:91