stdio.hhf

来自「High Level assembly language(HLA)软件」· HHF 代码 · 共 61 行

HHF
61
字号
#if( ! @defined( stdio_hhf ))?stdio_hhf := true;#include( "os.hhf" )const	#if( os.linux | os.freeBSD | os.macOS )			nl:text := """"" #10";			#elseif( os.win32 )			nl:text := "#13 #10";			#endifnamespace stdio; @fast;	const		bell:	text := "#$7";		bs:		text := "#$8";		tab:	text := "#$9";		eoln:	text := "#$a";		lf:		text := "#$a";		cr:		text := "#$d";		ff:		text := "#$c";		_idchars_:cset := {'a'..'z', 'A'..'Z', '0'..'9', '_', '.' };		#macro _GetID_( _fullID_ ):_lclID_, _idLen_;			?_lclID_ := @trim( _fullID_, 0 );			#if( char( _lclID_ ) in stdio._idchars_ )				?_idLen_ := @strspan( _lclID_, 0, stdio._idchars_ );				#if( _idLen_ < 0 )					?_idLen_ := @length( _lclID_ );				#endif				?_lclID_ := @substr							( 								_lclID_, 								0,								_idLen_ 							);			#endif			_lclID_		#endmacroend stdio;#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?