资源简介
BEAMnrc、DOSXYZnrc、以及BEAMDP程序的图形用户界面均
使用Tcl/Tk软件包来支持运行所以Tcl/Tk程序同样需要预先安装
代码片段和文件信息
/*
* fixstrtod.c --
*
* Source code for the “fixstrtod“ procedure. This procedure is
* used in place of strtod under Solaris 2.4 in order to fix
* a bug where the “end“ pointer gets set incorrectly.
*
* Copyright (c) 1995 Sun Microsystems Inc.
*
* See the file “license.terms“ for information on usage and redistribution
* of this file and for a DISCLAIMER OF ALL WARRANTIES.
*/
#include
#undef strtod
/*
* Declare strtod explicitly rather than including stdlib.h since in
* somes systems (e.g. SunOS 4.1.4) stdlib.h doesn‘t declare strtod.
*/
extern double strtod(char * char **);
double
fixstrtod(
char *string
char **endPtr)
{
double d;
d = strtod(string endPtr);
if ((endPtr != NULL) && (*endPtr != string) && ((*endPtr)[-1] == 0)) {
*endPtr -= 1;
}
return d;
}
相关资源
- Tkinter GUI Application Development Blueprints(
- 中科院汉语词法分析系统ICTCLAS安装包
- KENWOOD(健伍)TK-8100(C6)车台(中文
- libwebkitgtk-3.0-0_2.4.11-3_amd64.deb
- STK10帮助文件
- Driver_allinone_for_MT6261x_MT250x_NoRestricti
- GTK+程序设计中文版PDF
- ICTCLAS2009版中文分词系统
- MTK 6260调试工具
- STK用户手册中文版
- mctk2.1.10安装包+用户手册
- wave VCD Viewer波形查看工具(GTKwave)独
- TC二次开发资料ITK
- STK培训教材
- STK:干扰敌方通信
- ITK入门教程_医学图像分割与配准_高清
- MTK6589专用刷机工具汉化版救砖必备
- 铱星系统STK轨迹仿真场景平台
- MT7628 Program guide
- Hotkey驱动程序
- HTK中文资料
- stk 二次开发 connect命令参考手册
- MTK手机平台资料(含PCB文件+原理图)
- tk8.6.8-src.tar.gz
- 基于VTK的地质体真三维可视化原理和
- ghotkey 系统快捷键查询修改工具
- freeICTCLAS中科院中文分词(拼音中文输
- HTKbook-3.5版本,增加DNN识别
- KPG-002d101D(C)-300aTK3178-300b
- regex----gpstk安装时必用
评论
共有 条评论