Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make lemon 64-bit clean (CVS 294) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
475e2fedda2256cc1cfdffa1b12745bc |
User & Date: | drh 2001-10-25 20:37:17.000 |
Context
2001-10-31
| ||
15:44 | More documentation updates (CVS 295) (check-in: f65df59e55 user: drh tags: trunk) | |
2001-10-25
| ||
20:37 | Make lemon 64-bit clean (CVS 294) (check-in: 475e2fedda user: drh tags: trunk) | |
2001-10-22
| ||
03:00 | Version 2.0.7 (CVS 463) (check-in: b0442cb9c6 user: drh tags: trunk) | |
Changes
Changes to tool/lemon.c.
︙ | |||
1301 1302 1303 1304 1305 1306 1307 | 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 | - + | ** ALGORITHM: ** Merge-sort. */ /* ** Return a pointer to the next structure in the linked list. */ |
︙ | |||
1375 1376 1377 1378 1379 1380 1381 | 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 | - + - + | */ #define LISTSIZE 30 char *msort(list,next,cmp) char *list; char **next; int (*cmp)(); { |
︙ | |||
1527 1528 1529 1530 1531 1532 1533 | 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 | - + - + | break; case OPT_DBL: case OPT_FDBL: dv = strtod(cp,&end); if( *end ){ if( err ){ fprintf(err,"%sillegal character in floating-point argument.\n",emsg); |
︙ | |||
2621 2622 2623 2624 2625 2626 2627 | 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 | - + | char buf[1000]; FILE *in; char *tpltname; char *cp; cp = strrchr(lemp->filename,'.'); if( cp ){ |
︙ |