view src/ploki/re.h @ 12296:042127c1c142 draft

<fizzie> ` rm /hackenv/bin/bfi; ln -s /hackenv/lib/kps/bfi /hackenv/bin/bfi # no need for actual copies that you can forget to delete though
author HackEso <hackeso@esolangs.org>
date Sat, 04 Jan 2020 13:28:36 +0000
parents ac0403686959
children
line wrap: on
line source

#ifndef RE_H_
#define RE_H_

#include "config.h"
#include "IO.h"
#include "Str.h"

#include <stddef.h>
#include <stdio.h>

typedef struct my_regex t_regex;

void re_init(void);
void re_end(void);

t_regex *re_compile(const String *);
void re_free(t_regex *);
t_regex *re_dup(t_regex *);

ATTR_PURE
int re_match(t_regex *, const String *, size_t *, size_t *);
int re_iomatch(t_regex *, IO *, size_t *, size_t *);

ATTR_PURE
size_t re_cabra(const t_regex *);
int re_backref(const t_regex *, size_t, size_t *, size_t *);

void re_dump(const t_regex *, FILE *);
void re_decompile(const t_regex *, String *);

#endif /* RE_H_ */