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

« back to all changes in this revision

Viewing changes to src/spprint.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: spprint.c 8022 2007-06-05 22:23:38Z giles $ */
 
14
/* $Id: spprint.c 8250 2007-09-25 13:31:24Z giles $ */
15
15
/* Print values in ASCII form on a stream */
16
16
#include "math_.h"              /* for fabs */
17
17
#include "stdio_.h"             /* for stream.h */
44
44
 
45
45
/* Print a format string up to the first variable substitution. */
46
46
/* Return a pointer to the %, or to the terminating 0 if no % found. */
47
 
private const char *
 
47
static const char *
48
48
pprintf_scan(stream * s, const char *format)
49
49
{
50
50
    const char *fp = format;
61
61
}
62
62
 
63
63
/* Print a short string on a stream. */
64
 
private void
 
64
static void
65
65
pputs_short(stream *s, const char *str)
66
66
{
67
67
    const char *p = str;