This is sys_stod.c in view mode; [Download] [Up]
/* * PCN System * Author: Steve Tuecke * Argonne National Laboratory * * Please see the DISCLAIMER file in the top level directory of the * distribution regarding the provisions under which this software * is distributed. * * sys_stod.c * * Foreign procedures used by sys.pcn */ #include "sys_internal.h" /* * Convert string 'S' into double 'D'. */ void _p_sys_string_to_double(S, D) char_t *S; double_t *D; { *D = (double_t) atof(S); }
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.