📄 _srtflst.asm
字号:
include ..\cwlib.inc
scode
;-------------------------------------------------------------------------------
;
;Sort a file list into alpha-numeric order.
;
;Calling:
;
;SortFileList(filelist);
;
;On Entry:
;
;filelist - pointer to file list to sort.
;
;On Exit:
;
;ALL registers preserved.
;
;File names are not case converted so upper case names will appear at the top
;of the list.
;
_SortFileList proc syscall filelist:dword
public _SortFileList
push esi
mov esi,filelist
call SortFileList
pop esi
ret
_SortFileList endp
efile
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -