Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- size_t ufstrlen(const char *str)
- {
- __asm
- {
- sub ECX, ECX
- not ECX
- sub AL, AL
- mov EDI, str
- cld
- repne scasb
- not ECX
- dec ECX
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement