资源简介
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;
}
相关资源
- STK中文培训教材(航宇航天)
- TCL-S1916 ,1924交换机管理程序
- vtk QT做的三维地质可视化系统2of2
- GTK实现数字表显示
- 基于GTK的Linux环境下的简易任务管理器
- MT6771T_LTE-A_Smartphone_Application_Processor
- stk9.0破解文件
- 起算点点位不同对GPS-RTK测高的影响
- GPS-RTK技术在公婆泉矿区详查中的应用
- Multiple limit cycles for three-dimensional Lo
- AutoHotkey中文手册
- MT7621A-Board.pdf
- GPS-RTK技术及EPSW全息测绘软件在沉陷治
- 基于GPS-RTK与全站仪的城市道路改扩建
- GPS-RTK、全站仪联合作业在化石沟铜矿
- 浅谈RTK技术与全站仪在露天矿山中的
- GPS-RTK与全站仪联合作业在山谷型采石
- Win10安装MTK编译环境说明及补丁
- 导航mtk方案进wince工具
- 易语言GDI三角板源码
- instantclient_12_2.zip
- 黑客大曝光:恶意软件 Rootkit安全
- 嵌入式局域网聊天系统客户端
- Stoned Bootkit v2源代码
- IPOP华为网络自动化测试神器
- 飞机大战PlaneWar,Linux下gtk开发。
- Rootkits--Windows内核的安全防护.pdf
- Rootkits_Windows内核的安全防护 电子书及
- linux 操作系统 GTK /proc文件 系统监视器
- 常用功放IC资料原理图大全
评论
共有 条评论