Update HACKING for changed doc generation instructions
[geany-mirror.git] / tagmanager / ctags / sort.h
blob3f8c6b67e2d11574f450d374d6500b8019effd27
1 /*
2 * Copyright (c) 1998-2001, Darren Hiebert
4 * This source code is released for free distribution under the terms of the
5 * GNU General Public License.
7 * External interface to sort.c
8 */
9 #ifndef _SORT_H
10 #define _SORT_H
13 * INCLUDE FILES
15 #include "general.h" /* must always come first */
18 * FUNCTION PROTOTYPES
20 extern void catFile (const char *const name);
22 #ifdef EXTERNAL_SORT
23 extern void externalSortTags (const boolean toStdout);
24 #else
25 extern void internalSortTags (const boolean toStdout);
26 #endif
28 #endif /* _SORT_H */
30 /* vi:set tabstop=8 shiftwidth=4: */