📄 ppapbm.h
字号:
/* pbm.h * Copyright (c) 1998 Tim Norman. See LICENSE for details * 2-25-98 * * Mar 18, 1998 Jim Peterson <jspeter@birch.ee.vt.edu> * * Restructured to encapsulate more of the PBM handling. */#ifndef _PBM_H#define _PBM_H#include <stdio.h>typedef struct{ FILE* fptr; enum { none, P1, P4 } version; int width, height; int current_line; void *revdata; int unread;} pbm_stat;int make_pbm_stat(pbm_stat*,FILE*);int pbm_readline(pbm_stat*,unsigned char*); /* reads a single line into char* */void pbm_unreadline(pbm_stat*,void*); /* pushes a single line back */#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -