V10/ncurses/screen/two.twostr.c

Compare this file to the similar file:
Show the results in this format:

/* Make a 2 letter code into an integer we can switch on easily */
#define	two( s1, s2 )	(s1 + 256 * s2 )
#define	twostr( str )	two( *str, str[ 1 ] )