#include <sent/stddefs.h>
#include <sent/tcpip.h>
#include <zlib.h>
Include dependency graph for readfile.c:
Go to the source code of this file.
Functions | |
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 () |
Definition in file 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 |
Definition at line 52 of file readfile.c.
Referenced by add_bigram_rl(), add_unigram(), ngram_read_arpa(), rddfa(), rdhmmlist(), read_token(), set_and_check_total_info(), set_bigram(), set_total_info(), set_unigram(), and 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 |
Definition at line 86 of file readfile.c.
Referenced by adin_file_begin(), adin_sndfile_begin(), htk_config_file_parse(), mfcfilelist_nextfile(), and 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 |
Definition at line 114 of file readfile.c.
Referenced by msock_check_and_process_command(), msock_exec_command(), msock_process_command(), rddfa_fd(), and 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 |
Definition at line 151 of file readfile.c.
Referenced by msock_check_and_process_command(), msock_exec_command(), msock_process_command(), rddfa_sd(), and 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 |
Definition at line 186 of file readfile.c.
Referenced by add_bigram_rl(), add_unigram(), new_str2phseq(), rddfa_line(), rdhmmlist(), set_bigram(), and 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.
Definition at line 202 of file readfile.c.
Referenced by add_bigram_rl(), add_unigram(), rddfa_line(), set_bigram(), and set_unigram().
char* next_token_if_any | ( | void | ) |
Return next token of a buffer, delimited by DELM. Should be called after first_token().
Definition at line 216 of file readfile.c.
Referenced by new_str2phseq(), and rdhmmlist().
char* rest_token | ( | void | ) |
Return the rest tokens till newline. Program will terminate if any token does not found.
Definition at line 230 of file readfile.c.