📄 pbm.h
字号:
/* * -*- Mode: ANSI C -*- * $Id: pbm.h,v 1.2 1996/08/16 17:23:29 fernande Exp $ * $Source: /sgi.acct/sweldens/cvs/liftpack/include/pbm.h,v $ * Author: Gabriel Fernandez * * This file has the declarations for the functions to * read, and write a pgm data file. *//* do not edit anything above this line */#ifndef __PBM_H__#define __PBM_H__#include <stdio.h> /* used for the 'FILE *' type */#include "flwtdef.h" /* used for the 'byte' type */#include "image.h" /* used for the 'Image *' type */extern int LoadPBM ( const char *__filename, Image *__image );extern int WritePBM ( FILE *__fp, byte *__pic, const int __w, const int __h, const int __colorstyle, const int __bpp, const int __raw, char *__comment );#endif /* __PBM_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -