The Modular DocBook Stylesheets
PrevDSSSL LibraryNext

case-fold-up

Name

case-fold-up — Shift a string to uppercase

Synopsis

(case-fold-up str)

Description

Returns str in uppercase.

Author

Norman Walsh, <norm@berkshire.net>

Source Code

(define (case-fold-up str)
  ;; Shift a string to uppercase
  (if (string? str)
      (apply string (case-fold-up-charlist (string->list str)))
      str))

PrevHomeNext
case-fold-up-charlistUpcomponent-child-number