I'm a new in assembly and trying to write something like file searcher. This snippet I using for compare with 4-letter mask (FASM):
lea eax,[fd.cFileName]
push eax
call [lstrlen]
cmp dword [fd.cFileName+eax-4],'.txt' ; extension comparing
je .finded
How to change this snippet for work with 5-letter extensions, like '.docx'? Thank you.
It could be a little bit more complex if you want to search case insensitive, but something like this: