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

« back to all changes in this revision

Viewing changes to src/sstring.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: sstring.c 8022 2007-06-05 22:23:38Z giles $ */
 
14
/* $Id: sstring.c 8250 2007-09-25 13:31:24Z giles $ */
15
15
/* String and hexstring streams (filters) */
16
16
#include "stdio_.h"             /* includes std.h */
17
17
#include "memory_.h"
25
25
private_st_AXE_state();
26
26
 
27
27
/* Initialize the state */
28
 
private int
 
28
static int
29
29
s_AXE_init(stream_state * st)
30
30
{
31
31
    stream_AXE_state *const ss = (stream_AXE_state *) st;
34
34
}
35
35
 
36
36
/* Process a buffer */
37
 
private int
 
37
static int
38
38
s_AXE_process(stream_state * st, stream_cursor_read * pr,
39
39
              stream_cursor_write * pw, bool last)
40
40
{
77
77
private_st_AXD_state();
78
78
 
79
79
/* Initialize the state */
80
 
private int
 
80
static int
81
81
s_AXD_init(stream_state * st)
82
82
{
83
83
    stream_AXD_state *const ss = (stream_AXD_state *) st;
86
86
}
87
87
 
88
88
/* Process a buffer */
89
 
private int
 
89
static int
90
90
s_AXD_process(stream_state * st, stream_cursor_read * pr,
91
91
              stream_cursor_write * pw, bool last)
92
92
{
143
143
/* ------ PSStringEncode ------ */
144
144
 
145
145
/* Process a buffer */
146
 
private int
 
146
static int
147
147
s_PSSE_process(stream_state * st, stream_cursor_read * pr,
148
148
               stream_cursor_write * pw, bool last)
149
149
{
229
229
}
230
230
 
231
231
/* Process a buffer */
232
 
private int
 
232
static int
233
233
s_PSSD_process(stream_state * st, stream_cursor_read * pr,
234
234
               stream_cursor_write * pw, bool last)
235
235
{