X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests%2Fgethostname.lisp;h=f64765cfc917952488f3e5495d1aee5985849f62;hb=6fa89a151c41d40386c8e50bb66a94e14a366b3e;hp=ff650085f4c76c15ae628e7bafc4a509beb5616f;hpb=3ade95bab16abe09642554e9cbf56f117f01e507;p=uffi.git diff --git a/tests/gethostname.lisp b/tests/gethostname.lisp index ff65008..f64765c 100644 --- a/tests/gethostname.lisp +++ b/tests/gethostname.lisp @@ -19,28 +19,28 @@ ;;; This example is inspired by the example on the CL-Cookbook web site (eval-when (:compile-toplevel :load-toplevel :execute) - (uffi:def-function ("gethostname" c-gethostname) + (uffi:def-function ("gethostname" c-gethostname) ((name (* :unsigned-char)) (len :int)) :returning :int) - + (defun gethostname () "Returns the hostname" (let* ((name (uffi:allocate-foreign-string 256)) - (result-code (c-gethostname name 256)) - (hostname (when (zerop result-code) - (uffi:convert-from-foreign-string name)))) + (result-code (c-gethostname name 256)) + (hostname (when (zerop result-code) + (uffi:convert-from-foreign-string name)))) (uffi:free-foreign-object name) (unless (zerop result-code) - (error "gethostname() failed.")) + (error "gethostname() failed.")) hostname)) - + (defun gethostname2 () "Returns the hostname" (uffi:with-foreign-object (name '(:array :unsigned-char 256)) (if (zerop (c-gethostname (uffi:char-array-to-pointer name) 256)) - (uffi:convert-from-foreign-string name) - (error "gethostname() failed."))))) + (uffi:convert-from-foreign-string name) + (error "gethostname() failed."))))) (deftest :gethostname.1 (stringp (gethostname)) t) (deftest :gethostname.2 (stringp (gethostname2)) t)