1 /* 2 * Copyright (c) 1996-2003, Darren Hiebert 3 * 4 * Author: Darren Hiebert <dhiebert@users.sourceforge.net> 5 * http://ctags.sourceforge.net 6 * 7 * This source code is released for free distribution under the terms of the 8 * GNU General Public License version 2 or (at your option) any later version. 9 * It is provided on an as-is basis and no responsibility is accepted for its 10 * failure to perform as expected. 11 */ 12 13 #ifndef CTAGS_MAIN_STATS_PRIVATE_H 14 #define CTAGS_MAIN_STATS_PRIVATE_H 15 16 /* 17 * INCLUDE FILES 18 */ 19 #include "general.h" /* must always come first */ 20 #include "options_p.h" 21 22 /* 23 * FUNCTION PROTOTYPES 24 */ 25 extern void addTotals (const unsigned int files, const long unsigned int lines, const long unsigned int bytes); 26 extern void printTotals (const clock_t *const timeStamps, bool append, sortType sorted); 27 28 #endif /* CTAGS_MAIN_STATS_PRIVATE_H */ 29