Implemented string<
[jscl.git] / src / boot.lisp
index 44587f2..5f44fa6 100644 (file)
@@ -92,6 +92,9 @@
 (defun boundp (x)
   (boundp x))
 
+(defun fboundp (x)
+  (fboundp x))
+
 ;; Basic functions
 (defun = (x y) (= x y))
 (defun * (x y) (* x y))
 (defun char= (x y)
   (eql x y))
 
+(defun char< (x y)
+  (< (char-code x) (char-code y)))
+
 (defun integerp (x)
   (and (numberp x) (= (floor x) x)))
 
 
 (defun error (fmt &rest args)
   (%throw (apply #'format nil fmt args)))
-