X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=examples%2Fatoifl.cl;h=3db5a8bee4b2599f91bb065b2d547fd4bce1b9e0;hb=10a314bf1195fa1fd8c131808ef11480ef353fb3;hp=d6e48fdbab660651a5fed91778b13ff02d0d6a94;hpb=c333052e0f2b3860b5d25ab8de29ae76041fd42a;p=uffi.git diff --git a/examples/atoifl.cl b/examples/atoifl.cl index d6e48fd..3db5a8b 100644 --- a/examples/atoifl.cl +++ b/examples/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)