X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=examples%2Fgethostname.lisp;h=92ad2a57918e005e569055d60aa2e3d158915693;hb=72190043201239567658cfbae1c36bbd7233419b;hp=fb6f6e8a278f088cc9caca7aed38247e2138883c;hpb=da9ef130a96ba9102fc0cf68b1fe8cd0a90e67b7;p=uffi.git diff --git a/examples/gethostname.lisp b/examples/gethostname.lisp index fb6f6e8..92ad2a5 100644 --- a/examples/gethostname.lisp +++ b/examples/gethostname.lisp @@ -18,7 +18,7 @@ ;;; This example is inspired by the example on the CL-Cookbook web site -(uffi:def-function ("gethostname" c-gethostname) +(uffi:def-function ("gethostname" c-gethostname) ((name (* :unsigned-char)) (len :int)) :returning :int) @@ -26,9 +26,9 @@ (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.")) @@ -38,8 +38,8 @@ "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.")))) #+examples-uffi (progn @@ -49,15 +49,15 @@ #+test-uffi (progn (let ((hostname1 (gethostname)) - (hostname2 (gethostname2))) - + (hostname2 (gethostname2))) + (util.test:test (and (stringp hostname1) (stringp hostname2)) t - :fail-info "gethostname not string") + :fail-info "gethostname not string") (util.test:test (and (not (zerop (length hostname1))) - (not (zerop (length hostname2)))) t - :fail-info "gethostname length 0") + (not (zerop (length hostname2)))) t + :fail-info "gethostname length 0") (util.test:test (string= hostname1 hostname1) t - :fail-info "gethostname techniques don't match")) + :fail-info "gethostname techniques don't match")) )