r1546: *** empty log message ***
[uffi.git] / examples / strtol.cl
index 3655dd0d62a5a226cd9a8b05c6b1df862162e33f..57d2b45b37166bd207d8e6a2223aed439e479e1b 100644 (file)
@@ -9,7 +9,7 @@
 ;;;;
 ;;;; Copyright (c) 2002 Kevin M. Rosenberg
 ;;;;
-;;;; $Id: strtol.cl,v 1.2 2002/03/09 21:19:31 kevin Exp $
+;;;; $Id: strtol.cl,v 1.7 2002/03/11 18:00:57 kevin Exp $
 ;;;;
 ;;;; This file is part of UFFI. 
 ;;;;
@@ -29,9 +29,9 @@
 
 (in-package :cl-user)
 
-(uffi:def-type char-ptr (* :char))
+(uffi:def-foreign-type char-ptr (* :char))
   
-;; This example does not use :c-string to pass the input string since
+;; This example does not use :cstring to pass the input string since
 ;; the routine needs to do pointer arithmetic to see how many characters
 ;; were parsed
 
@@ -63,3 +63,13 @@ of first non-valid character"
      (t
       (values value chars-parsed)))))
 
+
+#+test-uffi
+(progn
+  (flet ((print-results (str)
+          (multiple-value-bind (result flag) (strtol str)
+            (format t "~&(strtol ~S) => ~S,~S" str result flag))))
+    (print-results "55")
+    (print-results "55.3")
+    (print-results "a")))
+