You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Collections-C
2
2
=============
3
3
4
-
A library of generic container types including a list, vector, hashtable, deque etc..
4
+
A library of generic container types including a list, array, hashtable, deque etc..
5
5
6
6
####Dependencies
7
7
- gcc
@@ -15,7 +15,7 @@ These packages can usually be installed through your distributions package manag
15
15
Building on windows requires [MinGW](http://mingw.org) which provides all the tools needed to build the project.
16
16
17
17
#### Building the project
18
-
In the project directory, run the following commands: `./autogen.sh` then run `./configure`. If autogen complains that it couldn't find a directory named "m4", run: `mkdir m4` and then `./autogen.sh`.
18
+
In the project directory, run the following commands: `./autogen.sh` then run `./configure`. If autogen complains that it couldn't find a directory named "m4", run: `mkdir m4` and then `./autogen.sh`.
19
19
20
20
At this point we should be able to build the project by running:
21
21
```
@@ -28,7 +28,7 @@ make check
28
28
29
29
#### Examples
30
30
31
-
HashTable:
31
+
HashTable:
32
32
```c
33
33
HashTable *table = hashtable_new();
34
34
@@ -40,20 +40,20 @@ char *removed = hashtable_remove("foo"); // removes the key and returns the valu
0 commit comments