Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Avoid the use of %lld to work around limitations of some windows compilers. Ticket [9d186979fc4fe8d9c] |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c76bb6d27014f9cdf0582b05d2ef8f27 |
| User & Date: | drh 2010-11-07 23:51:35.000 |
Context
|
2010-11-07
| ||
| 23:54 | Use the correct mimetype for the logo, even if the mimetype is not image/gif. Ticket [11209555c90f3b61e4]. check-in: 5478f444c5 user: drh tags: trunk | |
| 23:51 | Avoid the use of %lld to work around limitations of some windows compilers. Ticket [9d186979fc4fe8d9c] check-in: c76bb6d270 user: drh tags: trunk | |
|
2010-11-06
| ||
| 23:59 | Add an undocumented --noverify option to the rebuild command to skip the verify_before_commit() sanity check. check-in: 6a11af1782 user: drh tags: trunk | |
Changes
Changes to src/file.c.
| ︙ | ︙ | |||
307 308 309 310 311 312 313 314 315 316 317 |
** Also test Fossil's ability to measure attributes of a file.
*/
void cmd_test_canonical_name(void){
int i;
Blob x;
blob_zero(&x);
for(i=2; i<g.argc; i++){
const char *zName = g.argv[i];
file_canonical_name(zName, &x);
printf("%s\n", blob_buffer(&x));
blob_reset(&x);
| > > | > | | 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 |
** Also test Fossil's ability to measure attributes of a file.
*/
void cmd_test_canonical_name(void){
int i;
Blob x;
blob_zero(&x);
for(i=2; i<g.argc; i++){
char zBuf[100];
const char *zName = g.argv[i];
file_canonical_name(zName, &x);
printf("%s\n", blob_buffer(&x));
blob_reset(&x);
sqlite3_snprintf(sizeof(zBuf), zBuf, "%lld", file_size(zName));
printf(" file_size = %s\n", zBuf);
sqlite3_snprintf(sizeof(zBuf), zBuf, "%lld", file_mtime(zName));
printf(" file_mtime = %s\n", zBuf);
printf(" file_isfile = %d\n", file_isfile(zName));
printf(" file_isexe = %d\n", file_isexe(zName));
printf(" file_isdir = %d\n", file_isdir(zName));
}
}
/*
|
| ︙ | ︙ |