.386p
locals
extrn STRLEN:near
extrn MEMSET:near
public STRSET
_TEXT segment byte public use32 'CODE'
assume cs:_TEXT
STRSET:
mov eax,[esp+4+0+04h]
push eax
call STRLEN
mov edx,[esp+4+0+04h]
mov ecx,[esp+4+0+00h]
push edx
push ecx
push eax
call MEMSET
ret 08h
_TEXT ends
end