📄 bundle.c
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -