File: bundle.c

package info (click to toggle)
pstotext 1.9-1sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 256 kB
  • ctags: 273
  • sloc: ansic: 1,784; makefile: 76; sh: 1
file content (16 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright (C) 1995, Digital Equipment Corporation.         */
/* All rights reserved.                                       */
/* See the file pstotext.txt for a full description.          */
/* Last modified on Fri Jan 09 21:17:00 AEST 2004 by rjl   */
/*      modified on Thu Aug  1 11:32:09 PDT 1996 by mcjones   */

/* rjl: Fix compiler warnings */
#include <stdio.h>
#include "bundle.h"

void putbundle(BUNDLE b, FILE *f) {
  const char **ppLine = b;
  for (ppLine = b; *ppLine!=NULL; ppLine++) {
    fputs(*ppLine, f);
  }
}