Graphviz 12.0.1~dev.20240716.0800
Loading...
Searching...
No Matches
intset.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 v1.0
7 * which accompanies this distribution, and is available at
8 * https://www.eclipse.org/legal/epl-v10.html
9 *
10 * Contributors: Details at https://graphviz.org
11 *************************************************************************/
12
13#pragma once
14
15#include <cdt.h>
16#include <stddef.h>
17
18typedef struct {
19 size_t id;
21} intitem;
22
23extern Dt_t* openIntSet (void);
24void addIntSet(Dt_t *, size_t);
25int inIntSet(Dt_t *, size_t);
container data types API
void addIntSet(Dt_t *, size_t)
Definition intset.c:49
int inIntSet(Dt_t *, size_t)
Definition intset.c:56
Dt_t * openIntSet(void)
Definition intset.c:44
Definition cdt.h:104
size_t id
Definition intset.h:19
Dtlink_t link
Definition intset.h:20