#include <sent/stddefs.h>
mystrtok.cのインクルード依存関係図

マクロ定義 | |
| #define | ISTOKEN(A) strchr(delim, A) | 
| Abbreviation macro to find if A is included in string delim.  | |
関数 | |
| char * | mystrtok_quotation (char *str, char *delim, int left_paren, int right_paren, int mode) | 
| char * | mystrtok_quote (char *str, char *delim) | 
| char * | mystrtok (char *str, char *delim) | 
| char * | mystrtok_movetonext (char *str, char *delim) | 
mystrtok.c で定義されています。
      
  | 
  ||||||||||||||||||||||||
| 
 Generic function to extract tokens from strings, with quotation handling. The usage is as the same as strtok. 
 
 
 mystrtok.c の 50 行で定義されています。 参照元 mystrtok(), mystrtok_movetonext(), mystrtok_quote(), と voca_load_htkdict_line().  | 
  
      
  | 
  ||||||||||||
| 
 Extract tokens considering quotation by double quotation mark. 
 
 
 mystrtok.c の 104 行で定義されています。 参照元 read_token().  | 
  
      
  | 
  ||||||||||||
| 
 Extract tokens, not considering quotation, just as the same as strtok. 
 
 
 mystrtok.c の 118 行で定義されています。  | 
  
      
  | 
  ||||||||||||
| 
 Just move to the beginning of the next token, without modifying the str. 
 
 
 mystrtok.c の 132 行で定義されています。  | 
  
 1.4.2