r11859: Canonicalize whitespace
[uffi.git] / examples / gettime.lisp
index 6dc66c6d8c3d686969035aef84961ada20e34469..4606fd4054e1af458035b23145420760ea525642 100644 (file)
@@ -28,7 +28,7 @@
   (yday :int)
   (isdst :int))
 
-(uffi:def-function ("time" c-time) 
+(uffi:def-function ("time" c-time)
     ((time (* time-t)))
   :returning time-t)
 
      (c-time time)
      (let ((tm-ptr (the tm-pointer (c-localtime time))))
        (declare (type tm-pointer tm-ptr))
-       (let ((time-string (format nil "~2d/~2,'0d/~d ~2d:~2,'0d:~2,'0d" 
-                                 (1+ (uffi:get-slot-value tm-ptr 'tm 'mon))
-                                 (uffi:get-slot-value tm-ptr 'tm 'mday)
-                                 (+ 1900 (uffi:get-slot-value tm-ptr 'tm 'year))
-                                 (uffi:get-slot-value tm-ptr 'tm 'hour)
-                                 (uffi:get-slot-value tm-ptr 'tm 'min)
-                                 (uffi:get-slot-value tm-ptr 'tm 'sec)
-                                 )))
-        time-string))))
+       (let ((time-string (format nil "~2d/~2,'0d/~d ~2d:~2,'0d:~2,'0d"
+                                  (1+ (uffi:get-slot-value tm-ptr 'tm 'mon))
+                                  (uffi:get-slot-value tm-ptr 'tm 'mday)
+                                  (+ 1900 (uffi:get-slot-value tm-ptr 'tm 'year))
+                                  (uffi:get-slot-value tm-ptr 'tm 'hour)
+                                  (uffi:get-slot-value tm-ptr 'tm 'min)
+                                  (uffi:get-slot-value tm-ptr 'tm 'sec)
+                                  )))
+         time-string))))
 
 
 
@@ -67,7 +67,7 @@
   (let ((time (gettime)))
     (util.test:test (stringp time) t :fail-info "Time is not a string")
     (util.test:test (plusp (parse-integer time :junk-allowed t))
-                   t
-                   :fail-info "time string does not start with a number")))
+                    t
+                    :fail-info "time string does not start with a number")))
+
 
-