#include <sent/stddefs.h>
#include <errno.h>
#include <zlib.h>
gzfile.cのインクルード依存関係図
関数 | |
FILE * | fopen_readfile (char *filename) |
int | fclose_readfile (FILE *fp) |
size_t | myfread (void *ptr, size_t size, size_t n, FILE *fp) |
int | myfgetc (FILE *fp) |
int | myfeof (FILE *fp) |
FILE * | fopen_writefile (char *filename) |
int | fclose_writefile (FILE *fp) |
size_t | myfwrite (void *ptr, size_t size, size_t n, FILE *fp) |
コンパイル時に zlib 無い場合,gzip を用いて圧縮ファイルの展開を 行います.この場合,複数のファイルを同時に開くことは出来ませんので 注意してください.
gzfile.c で定義されています。
|
Open a file with zlib.
参照元 adin_file_open(), CMN_load_from_file(), init_dfa(), init_hmminfo(), init_ngram_arpa(), init_ngram_bin(), init_voca(), new_SS_load_from_file(), と rdparam(). |
|
Close a file previously opened by fopen_readfile().
参照元 adin_file_close(), adin_file_open(), CMN_load_from_file(), init_dfa(), init_hmminfo(), init_ngram_arpa(), init_ngram_bin(), init_voca(), new_SS_load_from_file(), rdparam(), と setup_wav(). |
|
Read data from input stream opened by fopen_readfile().
参照元 adin_file_open(), adin_file_read(), adin_stdin_read(), myread(), と rdn(). |
|
Read one character from input stream opened by fopen_readfile().
参照元 rdn_str(). |
|
Test if reached end of file, for files opened by fopen_readfile().
参照元 adin_file_read(). |
|
Open or create a file for writing (no compression supported),
参照元 wrwav_open(). |
|
Close file previously opened by open_writefile().
参照元 wrwav_close(). |
|
Write data.
|