822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
|
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
|
-
+
|
/*
** COMMAND: annotate
**
** %fossil annotate FILENAME
**
** Output the text of a file with markings to show when each line of
** the file was introduced.
** the file was last modified.
*/
void annotate_cmd(void){
int fnid; /* Filename ID */
int fid; /* File instance ID */
int mid; /* Manifest where file was checked in */
Blob treename; /* FILENAME translated to canonical form */
char *zFilename; /* Cannonical filename */
|