ROOT logo
void testcvsKeyWords(){
    // This macro tests the cvs keywords Date and Revision
    // Inputs:
    //   none.
    // Outputs:
    //   none.
    // Return:
    //   none.
    const Char_t *cvsDate="$Date$";
    const Char_t *cvsRevision="$Revision$";
    const Char_t *cvsId="$Id$";
    Char_t string[100];

    sprintf(string,"%s %s %s",cvsDate,cvsRevision,cvsId);
    printf("%s\n",string);
}
 testcvsKeyWords.C:1
 testcvsKeyWords.C:2
 testcvsKeyWords.C:3
 testcvsKeyWords.C:4
 testcvsKeyWords.C:5
 testcvsKeyWords.C:6
 testcvsKeyWords.C:7
 testcvsKeyWords.C:8
 testcvsKeyWords.C:9
 testcvsKeyWords.C:10
 testcvsKeyWords.C:11
 testcvsKeyWords.C:12
 testcvsKeyWords.C:13
 testcvsKeyWords.C:14
 testcvsKeyWords.C:15
 testcvsKeyWords.C:16
 testcvsKeyWords.C:17