-- Copyright (C) 1985, 1986  by Xerox Corporation. All rights reserved. 
-- CFormat.mesa
-- NFS   30-Jul-85 12:09:21

-- C library number conversion routines.

DIRECTORY
  CString USING [CString],
  DoubleReal USING [Double];
CFormat: DEFINITIONS =

  BEGIN

  atof: PROCEDURE [nptr: CString.CString] RETURNS [DoubleReal.Double];

  atoi: PROCEDURE [nptr: CString.CString] RETURNS [INTEGER];

  atol: PROCEDURE [nptr: CString.CString] RETURNS [LONG INTEGER];

  END.