Graphviz 13.1.3~dev.20250813.2319
Loading...
Searching...
No Matches
gvprmain.c
Go to the documentation of this file.
1/*************************************************************************
2 * Copyright (c) 2011 AT&T Intellectual Property
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11/*
12 * gvpr: graph pattern recognizer
13 *
14 * Written by Emden Gansner
15 */
16
17#include <gvpr/gvpr.h>
18#include <util/exit.h>
19
20int main(int argc, char *argv[]) {
21 gvpropts opts = {.flags = GV_USE_EXIT};
22 graphviz_exit(gvpr(argc, argv, &opts));
23}
24
static NORETURN void graphviz_exit(int status)
Definition exit.h:23
static opts_t opts
Definition gvgen.c:401
int gvpr(int argc, char *argv[], gvpropts *uopts)
Definition gvpr.c:1100
graph pattern scanning and processing language API, main function gvpr
#define GV_USE_EXIT
Definition gvpr.h:47
int main()