X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=examples%2Fstrtol.cl;h=98131602bc57d65629c8d1e479011af10d08c905;hb=bd00c8ed506689d49306569634294446e0a017e5;hp=3655dd0d62a5a226cd9a8b05c6b1df862162e33f;hpb=bc5968d54cee0416db7db9ee2c7295489170bccf;p=uffi.git diff --git a/examples/strtol.cl b/examples/strtol.cl index 3655dd0..9813160 100644 --- a/examples/strtol.cl +++ b/examples/strtol.cl @@ -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.5 2002/03/10 05:09:00 kevin Exp $ ;;;; ;;;; This file is part of UFFI. ;;;; @@ -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"))) +