Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2227)

Side by Side Diff: third_party/sqlite/sqlite-src-3070603/tool/showjournal.c

Issue 826543003: [sql] Import reference version of SQLite 3.7.6.3. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: gitignore forgot some files for me. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 ** A utility for printing an SQLite database journal. 2 ** A utility for printing an SQLite database journal.
3 */ 3 */
4 #include <stdio.h> 4 #include <stdio.h>
5 #include <ctype.h> 5 #include <ctype.h>
6 #include <stdlib.h> 6 #include <stdlib.h>
7 #include <string.h> 7 #include <string.h>
8 8
9 /* 9 /*
10 ** state information 10 ** state information
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 } 130 }
131 iOfst += sectorSize; 131 iOfst += sectorSize;
132 while( cnt && iOfst<fileSize ){ 132 while( cnt && iOfst<fileSize ){
133 print_page(iOfst); 133 print_page(iOfst);
134 iOfst += pageSize+8; 134 iOfst += pageSize+8;
135 } 135 }
136 iOfst = (iOfst/sectorSize + 1)*sectorSize; 136 iOfst = (iOfst/sectorSize + 1)*sectorSize;
137 } 137 }
138 fclose(db); 138 fclose(db);
139 } 139 }
OLDNEW
« no previous file with comments | « third_party/sqlite/sqlite-src-3070603/tool/showdb.c ('k') | third_party/sqlite/sqlite-src-3070603/tool/showwal.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698