bzr branch
http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
1
by Gustav Hartvigsson
Initial Code. |
1 |
NAME: |
2 |
The (Super) Simple Type System |
|
3 |
||
4 |
Authors: |
|
5 |
Gustav Hartvigsson (c) 2013 |
|
6 |
||
7 |
ABOUT: |
|
8 |
The software (The type-system) is an experiment. It was |
|
42
by Gustav Hartvigsson
* Updated the README. |
9 |
written by Gustav Hartvigsson to see how to create a simple reference counting |
10 |
type system that was super simple. (Redundancy is redundant). |
|
1
by Gustav Hartvigsson
Initial Code. |
11 |
|
12 |
The source code in ./src/ is what constitutes the type |
|
13 |
system. |
|
14 |
||
15 |
If you need a real type system for C use GLib/GObject. It |
|
16 |
is a much more mature and better designed type system |
|
17 |
than mine. It also has a main-loop and threading support |
|
18 |
out-of-the-box. |
|
19 |
||
20 |
ALSO: |
|
21 |
||
22 |
THIS SOFTWARE IS DISTRIBUTED AS IS, IT IS AN EXPERIMENT |
|
23 |
AND SHOULD BE TREATED AS SUCH. ALL AND ANY CLAIMS -- |
|
24 |
MONETARY OR OTHERWISE -- ARE VOID. |
|
25 |
||
42
by Gustav Hartvigsson
* Updated the README. |
26 |
THIS SOFTWARE IS DISTRIBUTED UNDER THE BSD LICENCE. |
1
by Gustav Hartvigsson
Initial Code. |
27 |
|
28 |
NOTE THAT INCLINATION (using #include or otherwise) OF |
|
29 |
THE HEADER FILES (files ending with .h) IS _NOT_ |
|
30 |
CONSIDERED AS DERIVATIVE, BUT CHANGES TO THE HEADER |
|
31 |
FILES IS. |
|
42
by Gustav Hartvigsson
* Updated the README. |
32 |