~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to terps/alan2/decode.h

  • Committer: Package Import Robot
  • Author(s): Sylvain Beucler
  • Date: 2013-07-28 13:38:56 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130728133856-4k6uc864wzsnrx04
Tags: 2011.1a-1
* New upstream release
* Alan 2 interpreter is now Free Software, include it
* Update fonts package names in dependencies (Closes: #715160)
* Bump Standards-Version to 3.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _DECODE_H_
 
2
#define _DECODE_H_
 
3
/*----------------------------------------------------------------------*\
 
4
 
 
5
  decode.h
 
6
 
 
7
  Arithmetic decoding module in Arun
 
8
 
 
9
\*----------------------------------------------------------------------*/
 
10
 
 
11
#include "types.h"
 
12
 
 
13
/* Types: */
 
14
 
 
15
/* Data: */
 
16
 
 
17
/* Functions: */
 
18
 
 
19
#ifdef _PROTOTYPES_
 
20
extern void startDecoding(void);
 
21
extern int decodeChar(void);
 
22
extern void *pushDecode(void);
 
23
extern void popDecode(void *info);
 
24
#else
 
25
extern void startDecoding();
 
26
extern int decodeChar();
 
27
extern void *pushDecode();
 
28
extern void popDecode();
 
29
#endif
 
30
#endif
 
31