Handle template expressions that may use the << or >> operators
[arduino-ctags.git] / main.h
blobad9a8e69c5d1bd63738b25a0e109597b053e7d92
1 /*
2 * $Id: main.h 443 2006-05-30 04:37:13Z darren $
4 * Copyright (c) 1998-2002, Darren Hiebert
6 * This source code is released for free distribution under the terms of the
7 * GNU General Public License.
9 * External interface to main.c
11 #ifndef _MAIN_H
12 #define _MAIN_H
15 * INCLUDE FILES
17 #include "general.h" /* must always come first */
19 #include <stdio.h>
21 #include "vstring.h"
24 * FUNCTION PROTOTYPES
26 extern void addTotals (const unsigned int files, const long unsigned int lines, const long unsigned int bytes);
27 extern boolean isDestinationStdout (void);
28 extern int main (int argc, char **argv);
30 #endif /* _MAIN_H */
32 /* vi:set tabstop=4 shiftwidth=4: */