#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.
|
Read one line from file that has been opened by fopen_readfile(). Blank line will be skipped.
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_trigram(), set_unigram(), and voca_load_htkdict(). |
|
Read one line from file pointer. Blank line will be skipped.
Definition at line 86 of file readfile.c. Referenced by adin_file_begin(), adin_sndfile_begin(), mfcfilelist_nextfile(), and multigram_add_prefix_filelist(). |
|
Read one line from a file descriptor. Blank line will be skipped.
Definition at line 114 of file readfile.c. Referenced by rddfa_fd(), and voca_load_htkdict_fd(). |
|
Read one line from a socket descriptor. Blank line will be skipped.
Definition at line 151 of file readfile.c. Referenced by rddfa_sd(), and voca_load_htkdict_sd(). |
|
Return first token of a buffer, delimited by DELM. Program will terminate if any token does not found.
Definition at line 186 of file readfile.c. Referenced by add_bigram_rl(), add_unigram(), new_str2phseq(), rddfa_line(), rdhmmlist(), set_bigram(), set_trigram(), and 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.
Definition at line 202 of file readfile.c. Referenced by add_bigram_rl(), add_unigram(), rddfa_line(), set_bigram(), set_trigram(), and set_unigram(). |
|
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(). |
|
Return the rest tokens till newline. Program will terminate if any token does not found.
Definition at line 230 of file readfile.c. |