Differences From Artifact [3e8c9f68c8]:
- File main.c — part of check-in [655771dcba] at 2021-03-30 06:32:46 on branch trunk — Add the maxTrigger resource, to try to prevent some kinds of infinite loops (user: user, size: 32202) [annotate] [blame] [check-ins using]
To Artifact [9136db6a90]:
- File main.c — part of check-in [6cb45f70ee] at 2021-04-08 14:44:42 on branch trunk — Add a compile-time assertion that multi-character literals are implemented in a suitable way. (user: user, size: 32263) [annotate] [blame] [check-ins using]
1 | 1 2 3 4 5 6 7 8 9 | - + | #if 0 |
| ︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | + |
#include "names.h"
#include "quarks.h"
#include "cursorshapes.h"
#include "heromesh.h"
typedef struct {
char a[(N_MESSAGES==sizeof(standard_message_names)/sizeof(*standard_message_names))?1:-9];
char b[('\1\0'*'x'+'\0\1'*'y'=='xy')?1:-9];
} ASSERTION;
static const char schema[]=
"BEGIN;"
"PRAGMA APPLICATION_ID(1296388936);"
"PRAGMA RECURSIVE_TRIGGERS(1);"
"CREATE TABLE IF NOT EXISTS `USERCACHEINDEX`(`ID` INTEGER PRIMARY KEY, `NAME` TEXT, `TIME` INT);"
|
| ︙ |