#include <sent/stddefs.h>
#include <sent/tcpip.h>
#include <zlib.h>
readfile.cのインクルード依存関係図
関数 | |
char * | getl (char *buf, int maxlen, FILE *fp) |
char * | getl_fp (char *buf, int maxlen, FILE *fp) |
char * | getl_fd (char *buf, int maxlen, int fd) |
char * | getl_sd (char *buf, int maxlen, int sd) |
char * | first_token (char *buf) |
char * | next_token () |
char * | next_token_if_any () |
char * | rest_token () |
readfile.c で定義されています。
|
Read one line from file that has been opened by fopen_readfile(). Blank line will be skipped.
readfile.c の 52 行で定義されています。 参照元 add_bigram_rl(), add_unigram(), ngram_read_arpa(), rddfa(), rdhmmlist(), read_token(), set_and_check_total_info(), set_bigram(), set_total_info(), set_trigram(), set_unigram(), と voca_load_htkdict(). |
|
Read one line from file pointer. Blank line will be skipped.
readfile.c の 86 行で定義されています。 参照元 adin_file_begin(), adin_sndfile_begin(), mfcfilelist_nextfile(), と multigram_add_prefix_filelist(). |
|
Read one line from a file descriptor. Blank line will be skipped.
readfile.c の 114 行で定義されています。 参照元 rddfa_fd(), と voca_load_htkdict_fd(). |
|
Read one line from a socket descriptor. Blank line will be skipped.
readfile.c の 151 行で定義されています。 参照元 rddfa_sd(), と voca_load_htkdict_sd(). |
|
Return first token of a buffer, delimited by DELM. Program will terminate if any token does not found.
readfile.c の 186 行で定義されています。 参照元 add_bigram_rl(), add_unigram(), new_str2phseq(), rddfa_line(), rdhmmlist(), set_bigram(), set_trigram(), と set_unigram(). |
|
Return next token of a buffer, delimited by DELM. Should be called after first_token(). Program will terminate if any token does not found.
readfile.c の 202 行で定義されています。 参照元 add_bigram_rl(), add_unigram(), rddfa_line(), set_bigram(), set_trigram(), と set_unigram(). |
|
Return next token of a buffer, delimited by DELM. Should be called after first_token().
readfile.c の 216 行で定義されています。 参照元 new_str2phseq(), と rdhmmlist(). |
|
Return the rest tokens till newline. Program will terminate if any token does not found.
readfile.c の 230 行で定義されています。 |