Overview
Comment: | merge TextGrid |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2f2a7645d9e6454bdeef462109f208e7 |
User & Date: | nnz on 2024-12-08 14:40:43 |
Other Links: | manifest | tags |
Context
2024-12-08
| ||
14:46 | 202408 restart with TextGrid check-in: dbcf1994d7 user: nnz tags: trunk | |
14:40 | merge TextGrid check-in: 2f2a7645d9 user: nnz tags: trunk | |
13:54 | added test file Leaf check-in: d487b46741 user: nnz tags: TextGrid | |
13:23 | redo some formatting check-in: 6d26cab7c2 user: nnz tags: trunk | |
Changes
Modified aocutils.c from [68c37aa5e0] to [a7eed73da2].
|
Modified aocutils.h from [475433f577] to [838e050968].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | + + + + + + + + - + | #ifndef AOCUTILS_H_INCLUDED #define AOCUTILS_H_INCLUDED struct TextGrid { unsigned rows, cols; char *data; // may have '\n' at end of rows }; bool TGvalid(struct TextGrid *tg, unsigned row, unsigned col); char *TGcharptr(struct TextGrid *tg, unsigned row, unsigned col); |