Overview
Comment: | Add box. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0c81d32c3e2978ba9abdcd625b79e415 |
User & Date: | js on 2012-05-03 18:43:05 |
Other Links: | manifest | tags |
Context
2012-06-13
| ||
16:52 | configure.ac: Remove useless checks. check-in: 9d0b087b32 user: js tags: trunk | |
2012-05-03
| ||
18:43 | Add box. check-in: 0c81d32c3e user: js tags: trunk | |
18:39 | Implement equal, hash and copy for int. check-in: e72556e3d2 user: js tags: trunk | |
Changes
Modified src/Makefile from [1d8d518421] to [6f54b584d5].
1 2 3 4 5 6 7 8 9 10 11 12 | SHARED_LIB = ${LIB_PREFIX}corefw${LIB_SUFFIX} LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = array.c \ class.c \ int.c \ map.c \ object.c \ range.c \ refpool.c \ string.c | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | SHARED_LIB = ${LIB_PREFIX}corefw${LIB_SUFFIX} LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = array.c \ box.c \ class.c \ int.c \ map.c \ object.c \ range.c \ refpool.c \ string.c |
︙ | ︙ |
Added src/box.c version [36ab9be71d].
Added src/box.h version [035cf86ca4].