1;;;
2;;; srfi-129 - Titlecase procedures
3;;;
4
5;; This is just an adaptor.
6
7(define-module srfi-129
8  (use gauche.unicode)
9  (export char-title-case?
10          char-titlecase
11          string-titlecase))
12
13