~ubuntu-branches/ubuntu/hardy/ghostscript/hardy

« back to all changes in this revision

Viewing changes to src/zbseq.c

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2007-11-22 12:17:43 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20071122121743-cd70s3ypq0r243mp
Tags: 8.61.dfsg.1-0ubtuntu1
* New upstream release
  o Final 8.61 release
* debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes.
* debian/rules: Updated CUPS-related variables for "make install" calls.
* debian/rules: Remove /usr/include/ghostscript from the ghostscript
  package, they go into lings-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
   San Rafael, CA  94903, U.S.A., +1(415)492-9861, for further information.
12
12
*/
13
13
 
14
 
/* $Id: zbseq.c 8022 2007-06-05 22:23:38Z giles $ */
 
14
/* $Id: zbseq.c 8250 2007-09-25 13:31:24Z giles $ */
15
15
/* Level 2 binary object sequence operators */
16
16
#include "memory_.h"
17
17
#include "ghost.h"
48
48
}
49
49
 
50
50
/* Initialize the binary token machinery. */
51
 
private int
 
51
static int
52
52
zbseq_init(i_ctx_t *i_ctx_p)
53
53
{
54
54
    /* Initialize a fake system name table. */
64
64
}
65
65
 
66
66
/* <names> .installsystemnames - */
67
 
private int
 
67
static int
68
68
zinstallsystemnames(i_ctx_t *i_ctx_p)
69
69
{
70
70
    os_ptr op = osp;
78
78
}
79
79
 
80
80
/* - currentobjectformat <int> */
81
 
private int
 
81
static int
82
82
zcurrentobjectformat(i_ctx_t *i_ctx_p)
83
83
{
84
84
    os_ptr op = osp;
89
89
}
90
90
 
91
91
/* <int> setobjectformat - */
92
 
private int
 
92
static int
93
93
zsetobjectformat(i_ctx_t *i_ctx_p)
94
94
{
95
95
    os_ptr op = osp;
114
114
 * items.)  See encode_binary_token for more details.
115
115
 */
116
116
 
117
 
private int
 
117
static int
118
118
zbosobject(i_ctx_t *i_ctx_p)
119
119
{
120
120
    os_ptr op = osp;