File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ comparison to other modern programming languages. This is a collection of
5
5
common computer science data structures and algorithms which may be used in C
6
6
projects.
7
7
8
+ The project is structured in a modular way, such that it is possible to
9
+ trivially copy any module (pair of ` .c ` and ` .h ` files) into a project without
10
+ dealing with the usual hassle of library dependencies. However, the project
11
+ does also build as a library named ` libcalg ` if that's what you want.
12
+
8
13
The code is licensed under the [ ISC license] ( COPYING.md ) , a permissive license
9
14
that is functionally identical to the MIT or BSD licenses. As such, it may
10
15
legitimately be reused in any project, whether proprietary or open source.
Original file line number Diff line number Diff line change @@ -72,3 +72,10 @@ All public interfaces must be documented using
72
72
*/
73
73
unsigned int hash_table_num_entries(HashTable *hash_table);
74
74
```
75
+
76
+ ## Modularity
77
+
78
+ The project is structured in a modular way, such that each module (` .c ` and
79
+ ` .h ` file) is independent of the others. The idea is that anyone should be able
80
+ to use any file in an "off the shelf" way by trivially copying those two files
81
+ into their project.
You can’t perform that action at this time.
0 commit comments