⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readtokens.h

📁 Linux下文件工具。
💻 H
字号:
#ifndef H_READTOKENS_H# define H_READTOKENS_H# ifndef INITIAL_TOKEN_LENGTH#  define INITIAL_TOKEN_LENGTH 20# endif# ifndef TOKENBUFFER_DEFINED#  define TOKENBUFFER_DEFINEDstruct tokenbuffer{  long size;  char *buffer;};typedef struct tokenbuffer token_buffer;# endif /* not TOKENBUFFER_DEFINED */# undef __P# if defined (__STDC__) && __STDC__#  define	__P(x) x# else#  define	__P(x) ()# endifvoid init_tokenbuffer __P ((token_buffer *tokenbuffer));long  readtoken __P ((FILE *stream, const char *delim, int n_delim,	     token_buffer *tokenbuffer));int  readtokens __P ((FILE *stream, int projected_n_tokens,	      const char *delim, int n_delim,	      char ***tokens_out, long **token_lengths));#endif /* not H_READTOKENS_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -