Differences From Artifact [838e050968]:
- File aocutils.h — part of check-in [f28e83772a] at 2024-12-08 13:13:57 on branch TextGrid — struct TextGrid is replacing linearize2d (user: nnz, size: 609) [annotate] [blame] [check-ins using] [more...]
To Artifact [3f85574365]:
- File aocutils.h — part of check-in [dbcf1994d7] at 2024-12-08 14:46:00 on branch trunk — 202408 restart with TextGrid (user: nnz, size: 631) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 |
#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);
| > > | 1 2 3 4 5 6 7 8 9 10 11 |
#ifndef AOCUTILS_H_INCLUDED
#define AOCUTILS_H_INCLUDED
#include <stdbool.h>
struct TextGrid {
unsigned rows, cols;
char *data; // may have '\n' at end of rows
};
bool TGvalid(struct TextGrid *tg, unsigned row, unsigned col);
|
| ︙ | ︙ |