parse.h
来自「Dieharder是一个是一个测试一序列伪随机数的随机性能的测试套件」· C头文件 代码 · 共 29 行
H
29 行
/* *======================================================================== * See copyright in copyright.h and the accompanying file COPYING *======================================================================== * Utility routines to support basic needs of the program like managing * models, creating and deleting directories with contents. Probable * cruft or yet-unused routines belong at the bottom... *======================================================================== *//* * This is a somewhat sloppy way to do this, I suppose, but it will work */#define PBUF 128#define PK 1024 /* * Shared space */ char splitbuf[PK][PBUF]; /* * parse.c prototypes */ int split(char *inbuffer); int parse(char *inbuffer,char **outfields,int maxfields,int maxfieldlength); void chop(char *buf);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?