-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
30 lines (25 loc) · 896 Bytes
/
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
Name: CPP Linked List
Version: 0.0.2
Date: 08/08/2010
Author: Sycadellicman (Patrick Jennings)
Contact: <[email protected]>
Source: http://github.com/Sycadellicman/CPP-Linked-List
----------------------------------------------------------------
--Description--
A generic linked list implementation written in C++. Could be
used for a stack, queue, or to easily sort comparable objects.
The package creates a library so that it may be included with
any program. A test file (main.cpp) is provided in order to
validate the correctness of the library and give an example of
its use.
--Install--
The package makes use of the Automake utilities. Installation
is straightforward and can be performed by executing the
following commands:
1) ./configure
2) make
3) make install
--Uninstall--
Removing the package is just as easy and can be done by
executing the command:
1) make uninstall