Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/Char/AsciiTab.hs

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


module Char where

asciiTab :: [(Char,String)]
asciiTab =
	[('\NUL',"NUL")
	,('\SOH',"SOH")
	,('\STX',"STX")
	,('\ETX',"ETX")
	,('\EOT',"EOT")
	,('\ENQ',"ENQ")
	,('\ACK',"ACK")
	,('\BEL',"BEL")
	,('\BS',"BS")
	,('\HT',"HT")
	,('\LF',"LF")
	,('\VT',"VT")
	,('\FF',"FF")
	,('\CR',"CR")
	,('\SO',"SO")
	,('\SI',"SI")
	,('\DLE',"DLE")
	,('\DC1',"DC1")
	,('\DC2',"DC2")
	,('\DC3',"DC3")
	,('\DC4',"DC4")
	,('\NAK',"NAK")
	,('\SYN',"SYN")
	,('\ETB',"ETB")
	,('\CAN',"CAN")
	,('\EM',"EM")
	,('\SUB',"SUB")
	,('\ESC',"ESC")
	,('\FS',"FS")
	,('\GS',"GS")
	,('\RS',"RS")
	,('\US',"US")
	,('\SP',"SP")
	]


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.