/*       ETAK Inc.  Aug 1988      */
#ifndef internat__h
#define internat__h
/* #ident  "@(#)internat.h	1.1 :/tmp_mnt/vol/consrc/geocode/s.internat.h 11/10/93 12:22:06" */

/*****************************************************************************
 *                                                                           *
 *  INTERNAT.H - Multinational string processing constant and function       *
 *               declarations                                                *
 *                                                                           *
 *                                                                           *
 *  Copyright (C) 1988 by ETAK, Inc.               Tsia Kuznetsov  May 25,88 *
 *  All Rights Reserved                                                      *
 *                                                                           *
 *  Original version extracted from idxstr(n)cmp.c         25-MAY-1988  tsk  *
 *  Added skip code, changed umlaut orderings              23-JAN-1989  mth  *
 *                                                                           *
 *****************************************************************************/
#define	ESC	   27	/* escape character */
#define SO	   14	/* shift out character */
#define	SI	   15	/* shift in character */
#define A_UMLAUT   '\304'
#define O_UMLAUT   '\326'
#define U_UMLAUT   '\334'
#define A_U        66   /* ordering for A Umlaut */
#define O_U        94   /* ordering for O Umlaut */
#define U_U        106  /* ordering for U Umlaut */
#define SKP        255  /* code for skipped characters */
#define COMPOUND_DIFF 1

/* definitions for character sets other than DEC multinational*/

#define	ETAK_CHARSET	'X'
#endif /* internat__h */
