~ubuntu-branches/ubuntu/lucid/fpc/lucid-proposed

« back to all changes in this revision

Viewing changes to fpcsrc/utils/sim_pasc/tokenarray.h

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-10-09 23:29:00 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20081009232900-553f61m37jkp6upv
Tags: 2.2.2-4
[ Torsten Werner ]
* Update ABI version in fpc-depends automatically.
* Remove empty directories from binary package fpc-source.

[ Mazen Neifer ]
* Removed leading path when calling update-alternatives to remove a Linitian
  error.
* Fixed clean target.
* Improved description of packages. (Closes: #498882)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*      This file is part of the software similarity tester SIM.
 
2
        Written by Dick Grune, Vrije Universiteit, Amsterdam.
 
3
        $Id: tokenarray.h,v 1.1 2001/09/28 09:03:42 dick Exp $
 
4
*/
 
5
 
 
6
#include        "token.h"
 
7
 
 
8
/* Interface for the token storage */
 
9
extern void InitTokenArray(void);
 
10
extern void StoreToken(void);
 
11
extern unsigned int TextLength(void);   /* also first free token position */
 
12
extern TOKEN *TokenArray;
 
13