fix wrongly interpreted >> in template
[arduino-ctags.git] / sort.h
blob83d3273700b5f69e25e6ca82e8c9cc02a1fa0422
1 /*
2 * $Id: sort.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 sort.c
11 #ifndef _SORT_H
12 #define _SORT_H
15 * INCLUDE FILES
17 #include "general.h" /* must always come first */
20 * FUNCTION PROTOTYPES
22 extern void catFile (const char *const name);
24 #ifdef EXTERNAL_SORT
25 extern void externalSortTags (const boolean toStdout);
26 #else
27 extern void internalSortTags (const boolean toStdout);
28 #endif
30 #endif /* _SORT_H */
32 /* vi:set tabstop=4 shiftwidth=4: */