Differences From Artifact [830d643cb4]:
- File function.c — part of check-in [1293433867] at 2022-01-13 06:48:00 on branch trunk — Implement cryptographic hash algorithms. (These are not currently used by Free Hero Mesh but is expected to be used in future.) (user: user, size: 64598) [annotate] [blame] [check-ins using]
To Artifact [51aa9509a3]:
- File function.c — part of check-in [5ea66f6525] at 2022-02-08 02:51:58 on branch trunk — Implement a few new instructions dealing with links: exec ,exec link rtn (user: user, size: 64620) [annotate] [blame] [check-ins using]
| ︙ | |||
226 227 228 229 230 231 232 233 234 235 236 237 238 239 | 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | + |
[TY_CLASS]="class",
[TY_MESSAGE]="message",
[TY_LEVELSTRING]="string",
[TY_STRING]="string",
[TY_SOUND]="sound",
[TY_USOUND]="sound",
[TY_MARK]="mark",
[TY_CODE]="link",
};
int i;
if(sqlite3_value_type(*argv)!=SQLITE_INTEGER) return;
i=sqlite3_value_int64(*argv)>>32;
sqlite3_result_text(cxt,i<0||i>TY_MAXTYPE?"object":n[i]?:"???",-1,SQLITE_STATIC);
}
|
| ︙ |