pbm.h
来自「大师写的二代小波经典之作」· C头文件 代码 · 共 25 行
H
25 行
/* * -*- 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 + =
减小字号Ctrl + -
显示快捷键?