Differences From Artifact [e1a62beba3]:
- File src/style.c — part of check-in [daeb10f65f] at 2010-12-16 14:46:48 on branch trunk — Use relative URLs for hyperlinks whereever possible, so that Fossil can work better behind a reverse proxy. (user: drh size: 20972)
To Artifact [cc06d0bfbc]:
- File src/style.c — part of check-in [31c52c7b3e] at 2010-12-23 02:22:20 on branch trunk — Add new function fossil_strcmp() that works like strcmp() except that it handles NULL arguments correctly. Use fossil_strcmp() in place of strcmp() in many places in the code. (user: drh size: 20979)
| ︙ | |||
68 69 70 71 72 73 74 | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | - + |
/*
** Compare two submenu items for sorting purposes
*/
static int submenuCompare(const void *a, const void *b){
const struct Submenu *A = (const struct Submenu*)a;
const struct Submenu *B = (const struct Submenu*)b;
|
| ︙ |