home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tcltk805.zip / tcl805s.zip / tcl8.0.5 / os2 / pkg / global.tcl < prev    next >
Text File  |  1998-10-17  |  427b  |  20 lines

  1. # global.tcl --
  2. #
  3. #  Test package for pkg_mkIndex.
  4. #  Contains global symbols, used to check that they don't have a leading ::
  5. #
  6. # Copyright (c) 1998 by Scriptics Corporation.
  7. # All rights reserved.
  8. # RCS: @(#) $Id: global.tcl,v 1.1 1998/10/17 00:21:40 escoffon Exp $
  9.  
  10. package provide global 1.0
  11.  
  12. proc global_lower { stg } {
  13.     return [string tolower $stg]
  14. }
  15.  
  16. proc global_upper { stg } {
  17.     return [string toupper $stg]
  18. }
  19.