File: bundle.c

package info (click to toggle)
pstotext 1.8-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 240 kB
  • ctags: 270
  • sloc: ansic: 1,712; makefile: 69; sh: 64
file content (14 lines) | stat: -rw-r--r-- 439 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* Copyright (C) 1995, Digital Equipment Corporation.         */
/* All rights reserved.                                       */
/* See the file pstotext.txt for a full description.          */
/* Last modified on Thu Aug  1 11:32:09 PDT 1996 by mcjones   */

#include <stdio.h>
#include "bundle.h"

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