Graphviz 16.0.0~dev.20260810.2334
Loading...
Searching...
No Matches
htmllex.h
Go to the documentation of this file.
1
3/*************************************************************************
4 * Copyright (c) 2011 AT&T Intellectual Property
5 * All rights reserved. This program and the accompanying materials
6 * are made available under the terms of the Eclipse Public License v2.0
7 * which accompanies this distribution, and is available at
8 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
9 *
10 * Contributors: Details at https://graphviz.org
11 *************************************************************************/
12
13#pragma once
14
15#include <common/htmltable.h>
16#include <util/agxbuf.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22union HTMLSTYPE;
24typedef struct htmlscan_s htmlscan_t;
25
26int initHTMLlexer(htmlscan_t *, char *, agxbuf *, htmlenv_t *);
27int htmllex(union HTMLSTYPE *, htmlscan_t *);
28unsigned long htmllineno(htmlscan_t *);
30void htmlerror(htmlscan_t *, const char *);
31
32#ifdef __cplusplus
33}
34#endif
Dynamically expanding string buffers.
void htmlerror(htmlscan_t *, const char *)
Definition htmllex.c:55
unsigned long htmllineno(htmlscan_t *)
Definition htmllex.c:903
int clearHTMLlexer(htmlscan_t *)
Definition htmllex.c:777
int htmllex(union HTMLSTYPE *, htmlscan_t *)
Definition htmllex.c:1049
int initHTMLlexer(htmlscan_t *, char *, agxbuf *, htmlenv_t *)
Definition htmllex.c:744