File: array.h

package info (click to toggle)
bison 2%3A3.8.2%2Bdfsg-1
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 37,996 kB
  • sloc: sh: 443,566; ansic: 82,243; cpp: 5,128; yacc: 3,383; lex: 2,432; perl: 1,044; java: 775; makefile: 307; ruby: 71; sed: 16
file content (30 lines) | stat: -rw-r--r-- 996 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* Functions to support abitsets.

   Copyright (C) 2002, 2004, 2009-2015, 2018-2021 Free Software Foundation,
   Inc.

   Contributed by Michael Hayes (m.hayes@elec.canterbury.ac.nz).

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */

#ifndef _BITSET_ARRAY_H
#define _BITSET_ARRAY_H

#include "bitset.h"

size_t abitset_bytes (bitset_bindex);

bitset abitset_init (bitset, bitset_bindex);

#endif