File: codeconv.scm

package info (click to toggle)
scmail 1.3-4.1
  • links: PTS
  • area: main
  • in suites: bullseye, forky, sid, trixie
  • size: 592 kB
  • sloc: lisp: 1,535; sh: 178; makefile: 145
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)