r2279: *** empty log message ***
[uffi.git] / examples / atoifl.cl
index 22f597d154e4cf6f26e2eabd36432560836642a0..84e9a72c568181ca8a003b89782b70bbeceebe5b 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: atoifl.cl,v 1.3 2002/04/02 21:29:45 kevin Exp $
+;;;; $Id: atoifl.cl,v 1.5 2002/04/03 00:31:32 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
     ((str :cstring))
   :returning :int)
 
-(uffi:def-function ("atol" c-atoi
+(uffi:def-function ("atol" c-atol
     ((str :cstring))
   :returning :long)
 
-(uffi:def-function ("atof" c-atoi
+(uffi:def-function ("atof" c-atof
     ((str :cstring))
   :returning :double)
 
   "Returns a int from a string."
   (uffi:with-cstring (str-cstring str)
     (c-atoi str-cstring)))
+
+(defun atof (str)
+  "Returns a double float from a string."
+  (uffi:with-cstring (str-cstring str)
+    (c-atof str-cstring)))
   
 #+examples-uffi
 (progn
     (print-results "55")))
 
 
+#+test-uffi
+(progn
+  (util.test:test (atoi "123") 123 :test #'eql
+                 :fail-info "Error with atoi")
+  (util.test:test (atoi "") 0 :test #'eql
+                 :fail-info "Error with atoi")
+  (util.test:test (atof "2.23") 2.23d0 :test #'eql
+                 :fail-info "Error with atof")
+  )
+