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
28
struct
Buffer
;
29
struct
Regex
;
30
31
void
regex_free
(
struct
Regex
**
regex
);
32
struct
Regex
*
regex_new
(
const
char
*str, uint32_t flags,
struct
Buffer
*err);
33
34
#endif
/* MUTT_CONFIG_REGEX2_H */
regex_new
struct Regex * regex_new(const char *str, uint32_t flags, struct Buffer *err)
Create an Regex from a string.
Definition:
regex.c:80
regex_free
void regex_free(struct Regex **regex)
Free a Regex object.
Definition:
regex.c:48
Buffer
String manipulation buffer.
Definition:
buffer.h:34
Regex
Cached regular expression.
Definition:
regex3.h:89
Regex::regex
regex_t * regex
compiled expression
Definition:
regex3.h:91