view src/ploki/re.h @ 12292:d51f2100210c draft

<kspalaiologos> `` cat <<<"asmbf && bfi output.b" > /hackenv/ibin/asmbf
author HackEso <hackeso@esolangs.org>
date Thu, 02 Jan 2020 15:38:21 +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_ */