X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=examples%2Fstrtol.cl;h=98131602bc57d65629c8d1e479011af10d08c905;hb=bd00c8ed506689d49306569634294446e0a017e5;hp=387d23b26b639b4a8fbf7705d1ecc1a20ccf0b14;hpb=e7691ffb0055b6a2c27639838b3b594e808f8973;p=uffi.git diff --git a/examples/strtol.cl b/examples/strtol.cl index 387d23b..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.4 2002/03/10 04:36:04 kevin Exp $ +;;;; $Id: strtol.cl,v 1.5 2002/03/10 05:09:00 kevin Exp $ ;;;; ;;;; This file is part of UFFI. ;;;; @@ -29,14 +29,14 @@ (in-package :cl-user) -(uffi:def-type char-ptr (* :unsigned-char)) +(uffi:def-type char-ptr (* :char)) ;; This example does not use :c-string to pass the input string since ;; the routine needs to do pointer arithmetic to see how many characters ;; were parsed (uffi:def-function ("strtol" c-strtol) - ((nptr (* :unsigned-char)) + ((nptr (* :char)) (endptr (* char-ptr)) (base :int)) :returning :long)