view src/ploki/venus.h @ 10131:bbbdb09e6365

<boily> le/rn mate//Mat\xc3\xa9 is a southern hemisphere shamanist beverage that opens your inner self to the Sacred World. Its enlightened users become friendly, wishing \xe2\x80\x9cG\'day, mat\xc3\xa9!\xe2\x80\x9d to one another.
author HackBot
date Sat, 14 Jan 2017 14:02:22 +0000
parents ac0403686959
children
line wrap: on
line source

#ifndef VENUS_H_
#define VENUS_H_

#include "Str.h"
#include "hash.h"
#include "op.h"

struct venus {
	Hash table;
};

void ve_init(struct venus *);
void ve_end(struct venus *);
void ve_enter(struct venus *, const String *, struct op *);
struct op *ve_findnext(struct venus *, const String *, size_t);
struct op *ve_findprev(struct venus *, const String *, size_t);
const String *ve_label(struct venus *, const struct op *);

#endif /* VENUS_H_ */