coco -- COde COnversion program

1. compile
	make

2. install
	make install

3. 
	 : coco io [input [output]]
		:
		coco k3 inputfile > outputfile
		coco k3 < inputfile > outputfile
	    :
		coco k3 < inputfile | wrev | sort | wrev | coco 3k | wform > outputfile
		% wrev -- ڿ 
		% wform --   


4. ٸ α׷ 
	#include "wjhcode.h"

	gcc -o exefile source.c wjhcode.c

5. Լ 
	prototype :
				unsigned char *coco_str(int src, int des, 
						unsigned char *str, unsigned char *out); 
				src des Ʒ 6. TG,KS,TRI ϳ̴.
	 :
				ptr=coco_str(KS,TRI,"",outbuff);
				ptr char pointer̰    
					outbuff Ű ȴ.
				% ڵ TRI ''  '' Ѵ.
				% "´"    ȿ ִ ''  ġ 
					 ʼ ̵ȴ.
				% ʼ '' ǥϷ   ..
				ptr=coco_str(KS,TRI,"^",outbuff);
				for(i=0,j=0;ptr[i];i++,j++)
					if(ptr[i]=='^')
					{
						tmpbuff[j]=tocho(ptr[i+1]);
						i++;
					}
					else
						tmpbuff[j]=ptr[i];

6. 
#define   TG      1   /*   (ﺸ KSSM, ťн, IBM, ֿ, ) */
#define   KS      6   /* KS ϼ (KS C 5601-1987 ϼ ǥ ڵ) */
#define   TRI     10  /* 3Ʈ ڵ TG Ȯ           */


