Graphviz 14.1.4~dev.20260317.1007
Loading...
Searching...
No Matches
comp.h
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 v2.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11#pragma once
12
13#include <stddef.h>
14#include <util/list.h>
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20#include <common/render.h>
21
22typedef LIST(graph_t *) graphs_t;
23
25graphs_t findCComp(graph_t *, int *, size_t *counter);
26
27#ifdef __cplusplus
28}
29#endif
graphs_t findCComp(graph_t *, int *, size_t *counter)
Definition comp.c:62
type-generic dynamically expanding list
#define LIST(type)
Definition list.h:55
graph or subgraph
Definition cgraph.h:424