X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Fatoifl.cl;h=3db5a8bee4b2599f91bb065b2d547fd4bce1b9e0;hb=d4872fa198cddc32213c749e4c30a8ab2f01a19b;hp=d6e48fdbab660651a5fed91778b13ff02d0d6a94;hpb=9da32ae8be205781e0e54f8cba574a9a2c432883;p=uffi.git diff --git a/tests/atoifl.cl b/tests/atoifl.cl index d6e48fd..3db5a8b 100644 --- a/tests/atoifl.cl +++ b/tests/atoifl.cl @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: atoifl.cl,v 1.1 2002/03/25 01:24:35 kevin Exp $ +;;;; $Id: atoifl.cl,v 1.2 2002/03/28 17:11:11 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -22,6 +22,14 @@ ((str :cstring)) :returning :int) +(uffi:def-function ("atol" c-atoi) + ((str :cstring)) + :returning :long) + +(uffi:def-function ("atof" c-atoi) + ((str :cstring)) + :returning :double) + (defun atoi (str) "Returns a int from a string." (uffi:with-cstring (str-cstring str)