txt.h

来自「大师写的二代小波经典之作」· C头文件 代码 · 共 22 行

H
22
字号
/* *  -*- Mode: ANSI C -*- *  $Id: txt.h,v 1.1 1996/01/25 22:46:51 fernande Exp $ *  $Source: /usr/people.harrier/sweldens/cvs/liftpack/include/txt.h,v $ *  Author: Fernandez, Gabriel * *  This file has the declarations for the functions to *  read, and write a text data file. *//* do not edit anything above this line */#ifndef __TXT_H__#define __TXT_H__#include <stdio.h>   /* for FILE type */#include "image.h"   /* for Image type */extern int LoadTXT ( char *__filename, Image *__image );extern int WriteTXT ( FILE *__fp, const Image _image );#endif /* __TXT_H__ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?