#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 で定義されています。
char* getl | ( | char * | buf, | |
int | maxlen, | |||
FILE * | fp | |||
) |
Read one line from file that has been opened by fopen_readfile(). Blank line will be skipped.
buf | [out] data buffer | |
maxlen | [in] maximum length of above | |
fp | [in] file pointer or gzFile pointer |
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_unigram()・voca_load_htkdict().
char* getl_fp | ( | char * | buf, | |
int | maxlen, | |||
FILE * | fp | |||
) |
Read one line from file pointer. Blank line will be skipped.
buf | [out] data buffer | |
maxlen | [in] maximum length of above | |
fp | [in] file pointer |
readfile.c の 86 行で定義されています。
参照元 adin_file_begin()・adin_sndfile_begin()・htk_config_file_parse()・mfcfilelist_nextfile()・multigram_add_prefix_filelist().
char* getl_fd | ( | char * | buf, | |
int | maxlen, | |||
int | fd | |||
) |
Read one line from a file descriptor. Blank line will be skipped.
buf | [out] data buffer | |
maxlen | [in] maximum length of above | |
fd | [in] file descriptor |
readfile.c の 114 行で定義されています。
参照元 msock_check_and_process_command()・msock_exec_command()・msock_process_command()・rddfa_fd()・voca_load_htkdict_fd().
char* getl_sd | ( | char * | buf, | |
int | maxlen, | |||
int | sd | |||
) |
Read one line from a socket descriptor. Blank line will be skipped.
buf | [out] data buffer | |
maxlen | [in] maximum length of above | |
sd | [in] socket descpritor |
readfile.c の 151 行で定義されています。
参照元 msock_check_and_process_command()・msock_exec_command()・msock_process_command()・rddfa_sd()・voca_load_htkdict_sd().
char* first_token | ( | char * | buf | ) |
Return first token of a buffer, delimited by DELM. Program will terminate if any token does not found.
buf | [i/o] string buffer |
readfile.c の 186 行で定義されています。
参照元 add_bigram_rl()・add_unigram()・new_str2phseq()・rddfa_line()・rdhmmlist()・set_bigram()・set_unigram().
char* next_token | ( | void | ) |
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_unigram().
char* next_token_if_any | ( | void | ) |
Return next token of a buffer, delimited by DELM. Should be called after first_token().
readfile.c の 216 行で定義されています。
char* rest_token | ( | void | ) |
Return the rest tokens till newline. Program will terminate if any token does not found.
readfile.c の 230 行で定義されています。