Last modification on 2/9/92.  -- DaeGyun Yoon
==============
This distribution contains a set of programs which converts code
between SSHR and KS5601 code.  The specification for SSHR code can be
found in sshr.doc. 

The conversions are performed as follows:

	SSHR -> n-byte code -> KS5601
	KS5601 -> n-byte code -> SSHR

The conversion between n-byte and KS-5601 has been done by Mr. Cho,
YoungHwan at Kaist.

Programs included in this package are:

	ks2sshr: converts KS5601 to romanized hangul in SSHR.
	readks:  similar to ks2sshr; but mainly used for back-end
		 filter to interactive programs such  as hangul BBS.
	sshr2ks: converts SSHR code to KS5601.

To build :
	1. Modify the flags in Makefile to suit your taste.
	2. run make.

Simple Usage :
	- ks2sshr(readks) [-h(elp)] [-d(otted)] [filename]
	- sshr2ks [filename]
	or to use as a back end of other program(s)..
	- other program | readks [options]
	- other program | sshr2ks

Files:
	README : This file
	Makefile : To build the programs.
	ks2sshr.c : The source code fot both ks2sshr and readks
	sshr2ks.c : The source code for sshr2ks.
	sshr_scan.l : Lex file which scans text in SSHR and maps to
		corresponding n-byte code. 
	hantbl.h : Mapping table from n-byte to KS5601.
	nbdef.h: n-byte code to SSHR string mapping table
	sshr.doc: description of the SSHR coding scheme
	example.sshr : A sample text file in SSHR.

