~ubuntu-branches/ubuntu/maverick/codelite/maverick

« back to all changes in this revision

Viewing changes to sdk/ctags/sort.h

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-02-10 02:27:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090210022755-m5692nfc1t5uf1w9
Tags: 1.0.2759+dfsg-0ubuntu1
* New upstream release (LP: #327216).
* debian/patches/series, debian/patches/00_fix-ia64-build.patch:
  + Dropped, applied upstream already.
* debian/patches/02_fix-desktop.patch,
  debian/patches/03_fix-sh.patch:
  + Refreshed to patch cleanly.
* debian/rules:
  + Make get-orig-source honour UPSTREAM_VERSION if set.
* debian/ctags-le.1,
  debian/codelite_indexer.1,
  debian/codelite.manpages:
  + Dropped ctags-le manpage, since ctags-le was replaced by
    codelite_indexer.
  + Added codelite_indexer manpage.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
*   $Id: sort.h,v 1.3 2006/05/30 04:37:13 darren Exp $
3
 
*
4
 
*   Copyright (c) 1998-2002, Darren Hiebert
5
 
*
6
 
*   This source code is released for free distribution under the terms of the
7
 
*   GNU General Public License.
8
 
*
9
 
*   External interface to sort.c
10
 
*/
11
 
#ifndef _SORT_H
12
 
#define _SORT_H
13
 
 
14
 
/*
15
 
*   INCLUDE FILES
16
 
*/
17
 
#include "general.h"  /* must always come first */
18
 
 
19
 
/*
20
 
*   FUNCTION PROTOTYPES
21
 
*/
22
 
extern void catFile (const char *const name);
23
 
 
24
 
#ifdef EXTERNAL_SORT
25
 
extern void externalSortTags (const boolean toStdout);
26
 
#else
27
 
extern void internalSortTags (const boolean toStdout);
28
 
#endif
29
 
 
30
 
#endif  /* _SORT_H */
31
 
 
32
 
/* vi:set tabstop=4 shiftwidth=4: */