blob: 847861fd06bef166a421598ecd837ff5f1b36f11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef WS_H
#define WS_H
#include "prv.h"
struct ws
{
int dummy;
};
int ws(const struct lex *l, struct prv *p);
void ws_free(struct ws *ws);
extern const struct seq wsseq[];
#endif
|