strparse.h

来自「牛顿插值方法求解多项式的系数」· C头文件 代码 · 共 36 行

H
36
字号
/* * (c) Copyright 1992, 1993 by Panagiotis Tsirigotis * All rights reserved.  The file named COPYRIGHT specifies the terms  * and conditions for redistribution. */#ifndef __STRPARSE_H#define __STRPARSE_H/* * $Id: strparse.h,v 1.1.1.1 2003/02/19 17:29:27 bbraun Exp $ */struct str_handle{   char *string ;   char *separator ;   char *pos ;   int flags ;   int *errnop ;   int no_more ;} ;#ifndef NULL#define NULL         0#endif#ifndef FALSE#define FALSE        0#define TRUE         1#endif#endif /* __STRPARSE_H */

⌨️ 快捷键说明

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