File: codeconv.scm

package info (click to toggle)
scmail 1.3-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 392 kB
  • ctags: 173
  • sloc: lisp: 1,519; makefile: 188; sh: 178
file content (7 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
(use gauche.charconv)
(define (main args)
  (call-with-input-file (cadr args)
    (lambda (in) 
      (copy-port in (current-output-port) :unit 'char))
    :encoding "euc-jp")
  0)