bundle.c
来自「GSview 4.6 PostScript previewer。Ghostscr」· C语言 代码 · 共 17 行
C
17 行
/* 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); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?