mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
b819608ed8
svn path=/branches/condrv_restructure/; revision=63104
32 lines
381 B
PHP
32 lines
381 B
PHP
|
|
#include "tchar.h"
|
|
#include <asm.inc>
|
|
|
|
PUBLIC _tcsrchr
|
|
.code
|
|
|
|
_tcsrchr:
|
|
push esi
|
|
mov esi, [esp + 8]
|
|
mov edx, [esp + 12]
|
|
|
|
cld
|
|
mov ecx, _tsize
|
|
|
|
.L1:
|
|
_tlods
|
|
cmp _treg(d), _treg(a)
|
|
jne .L2
|
|
mov ecx, esi
|
|
|
|
.L2:
|
|
test _treg(a), _treg(a)
|
|
jnz .L1
|
|
|
|
mov eax, ecx
|
|
_tdec(eax)
|
|
pop esi
|
|
ret
|
|
|
|
END
|
|
/* EOF */
|