Remove old CVS $Id$ keyword
[uffi.git] / examples / arrays.lisp
index 1bc438f623cb6ba2aa853bf03a50d95a58b95dcc..474249dac8b6b6a1a9edbcc035a913917cc9ad5e 100644 (file)
@@ -7,13 +7,8 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Mar 2002
 ;;;;
-;;;; $Id: arrays.lisp,v 1.2 2002/12/03 06:58:39 kevin Exp $
+;;;; This file, part of UFFI, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
 ;;;;
-;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
-;;;;
-;;;; UFFI users are granted the rights to distribute and use this software
-;;;; as governed by the terms of the Lisp Lesser GNU Public License
-;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
 (in-package :cl-user)
@@ -21,7 +16,7 @@
 (uffi:def-constant +column-length+ 10)
 (uffi:def-constant +row-length+ 10)
 
-(uffi:def-foreign-type long-ptr '(* :long))
+(uffi:def-foreign-type long-ptr (* :long))
 
 (defun test-array-1d ()
   "Tests vector"
     (dotimes (r +row-length+)
       (declare (fixnum r))
       (setf (uffi:deref-array a '(:array (* :long)) r)
-           (uffi:allocate-foreign-object :long +column-length+))
+            (uffi:allocate-foreign-object :long +column-length+))
       (let ((col (uffi:deref-array a '(:array (* :long)) r)))
-       (dotimes (c +column-length+)
-         (declare (fixnum c))
-         (setf (uffi:deref-array col '(:array :long) c) (+ (* r +column-length+) c)))))
+        (dotimes (c +column-length+)
+          (declare (fixnum c))
+          (setf (uffi:deref-array col '(:array :long) c) (+ (* r +column-length+) c)))))
 
     (dotimes (r +row-length+)
       (declare (fixnum r))
       (format t "~&Row ~D: " r)
       (let ((col (uffi:deref-array a '(:array (* :long)) r)))
-       (dotimes (c +column-length+)
-         (declare (fixnum c))
-         (let ((result (uffi:deref-array col '(:array :long) c)))
-           (format t "~d " result)))))
+        (dotimes (c +column-length+)
+          (declare (fixnum c))
+          (let ((result (uffi:deref-array col '(:array :long) c)))
+            (format t "~d " result)))))
 
     (uffi:free-foreign-object a))
   (values))