forked from MichaelDipperstein/bitarray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
49 lines (42 loc) · 1.51 KB
/
README
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
DESCRIPTION
-----------
This archive contains an ANSI C library implementing arbitrary length arrays
of bits. The library is intended to be easy to follow and expand upon,
though it may be used without an understanding of its implementation.
FILES
-----
bitarray.c - Library providing operations on arbitrary length arrays
of bits.
bitarray.h - Header for bitarray library.
COPYING - GNU General Public License Version 3
COPYING.LESSER - GNU Lesser General Public License Version 3
sample.c - Program demonstrating how to use the bitarray library.
Makefile - makefile for this project (assumes gcc compiler and GNU make)
README - this file
docs/index.html - description of each function in the bitarray library
BUILDING
--------
To build these files with GNU make and gcc, simply enter "make" from the
command line.
USAGE
-----
sample.c demonstrates usage of each of the bitarray functions.
DOCUMENTATION
-------------
See https://michaeldipperstein.github.io/bitarray/
HISTORY
-------
01/30/04 - Initial release
02/08/06 - Applied Petr Kobalicek's <[email protected]> fix for
handling array memory allocation failures.
08/26/07 - Updated for LGPL v3 release.
12/22/14 - Use errno where it makes sense and provide an document describing
each function.
07/12/17 - Updates for github
TODO
----
- Test on platforms with character lengths other than 8 bits.
AUTHOR
------
Michael Dipperstein ([email protected])
https://michaeldipperstein.github.io/