1a5ae21e4Smrg#!/bin/sh 204b94745Smrg# $XTermId: altchars.sh,v 1.4 2020/10/29 00:32:02 tom Exp $ 3a5ae21e4Smrg# ----------------------------------------------------------------------------- 4a5ae21e4Smrg# this file is part of xterm 5a5ae21e4Smrg# 6a5ae21e4Smrg# Copyright 2020 by Thomas E. Dickey 7a5ae21e4Smrg# 8a5ae21e4Smrg# All Rights Reserved 9a5ae21e4Smrg# 10a5ae21e4Smrg# Permission is hereby granted, free of charge, to any person obtaining a 11a5ae21e4Smrg# copy of this software and associated documentation files (the 12a5ae21e4Smrg# "Software"), to deal in the Software without restriction, including 13a5ae21e4Smrg# without limitation the rights to use, copy, modify, merge, publish, 14a5ae21e4Smrg# distribute, sublicense, and/or sell copies of the Software, and to 15a5ae21e4Smrg# permit persons to whom the Software is furnished to do so, subject to 16a5ae21e4Smrg# the following conditions: 17a5ae21e4Smrg# 18a5ae21e4Smrg# The above copyright notice and this permission notice shall be included 19a5ae21e4Smrg# in all copies or substantial portions of the Software. 20a5ae21e4Smrg# 21a5ae21e4Smrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 22a5ae21e4Smrg# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 23a5ae21e4Smrg# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 24a5ae21e4Smrg# IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY 25a5ae21e4Smrg# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 26a5ae21e4Smrg# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 27a5ae21e4Smrg# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 28a5ae21e4Smrg# 29a5ae21e4Smrg# Except as contained in this notice, the name(s) of the above copyright 30a5ae21e4Smrg# holders shall not be used in advertising or otherwise to promote the 31a5ae21e4Smrg# sale, use or other dealings in this Software without prior written 32a5ae21e4Smrg# authorization. 33a5ae21e4Smrg# ----------------------------------------------------------------------------- 34a5ae21e4Smrgecho 35a5ae21e4Smrgtput enacs 36a5ae21e4Smrgtput smacs 37a5ae21e4Smrg#define ACS_ULCORNER NCURSES_ACS('l') /* upper left corner */ 38a5ae21e4Smrg#define ACS_LLCORNER NCURSES_ACS('m') /* lower left corner */ 39a5ae21e4Smrg#define ACS_URCORNER NCURSES_ACS('k') /* upper right corner */ 40a5ae21e4Smrg#define ACS_LRCORNER NCURSES_ACS('j') /* lower right corner */ 41a5ae21e4Smrg#define ACS_LTEE NCURSES_ACS('t') /* tee pointing right */ 42a5ae21e4Smrg#define ACS_RTEE NCURSES_ACS('u') /* tee pointing left */ 43a5ae21e4Smrg#define ACS_BTEE NCURSES_ACS('v') /* tee pointing up */ 44a5ae21e4Smrg#define ACS_TTEE NCURSES_ACS('w') /* tee pointing down */ 45a5ae21e4Smrg#define ACS_HLINE NCURSES_ACS('q') /* horizontal line */ 46a5ae21e4Smrg#define ACS_VLINE NCURSES_ACS('x') /* vertical line */ 47a5ae21e4Smrg#define ACS_PLUS NCURSES_ACS('n') /* large plus or crossover */ 48a5ae21e4Smrgcat <<'EOF' 49a5ae21e4SmrgXlqqqqwqqqqwqqqqwqqqqkX 50a5ae21e4SmrgXxaaaaxaaaaxaaaaxaaaaxX 51a5ae21e4SmrgXtqqqqnqqqqnqqqqnqqqquX 52a5ae21e4SmrgXxaaaaxaaaaxaaaaxaaaaxX 53a5ae21e4SmrgXmqqqqvqqqqvqqqqvqqqqjX 54a5ae21e4Smrg 55a5ae21e4SmrgX _`abcdefghijklmn X 56a5ae21e4SmrgX opqrstuvwxyz{|}~ X 57a5ae21e4SmrgX ................ X 58a5ae21e4SmrgEOF 59a5ae21e4Smrgtput rmacs 60a5ae21e4Smrgcat <<'EOF' 61a5ae21e4Smrg+----+----+----+----+ 62a5ae21e4SmrgEOF 63