added random functions
authorAndrey Kutejko <andy128k@gmail.com>
Thu, 11 Mar 2010 23:00:45 +0000 (01:00 +0200)
committerAndrey Kutejko <andy128k@gmail.com>
Thu, 11 Mar 2010 23:00:45 +0000 (01:00 +0200)
glib/cl-gtk2-glib.asd
glib/glib.rand.lisp [new file with mode: 0644]

index 908923f..92dcb35 100644 (file)
@@ -11,6 +11,7 @@
                (:file "glib.quark")
                (:file "glib.gerror")
                (:file "glib.utils")
+               (:file "glib.rand")
 
                (:file "gobject.init")
                (:file "gobject.ffi.package")
diff --git a/glib/glib.rand.lisp b/glib/glib.rand.lisp
new file mode 100644 (file)
index 0000000..4849f73
--- /dev/null
@@ -0,0 +1,32 @@
+(in-package :glib)
+
+(defcfun (random-set-seed "g_random_set_seed") :void
+  (seed :uint32))
+
+(export 'random-set-seed)
+
+(defcfun (random-int "g_random_int") :uint32)
+
+(export 'random-int)
+
+(defcfun (random-int-range "g_random_int_range") :int32
+  (begin :int32)
+  (end :int32))
+
+(export 'random-int-range)
+
+(defun random-boolean ()
+  (logtest (random-int) #X8000))
+
+(export 'random-boolean)
+
+(defcfun (random-double "g_random_double") :double)
+
+(export 'random-double)
+
+(defcfun (random-double-range "g_random_double_range") :double
+  (begin :double)
+  (end :double))
+
+(export 'random-double-range)
+