mirror of
https://github.com/GLEGram/GLEGram-iOS.git
synced 2026-08-14 15:00:27 +02:00
Based on Swiftgram 12.5 (Telegram iOS 12.5). All GLEGram features ported and organized in GLEGram/ folder. Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass, Font Replacement, Fake Profile, Chat Export, Plugin System, and more. See CHANGELOG_12.5.md for full details.
19 lines
343 B
NASM
19 lines
343 B
NASM
; program to test retrieval of and linkage to modules in libraries by
|
|
; ldrdf
|
|
|
|
[SECTION .text]
|
|
[GLOBAL _main]
|
|
[EXTERN _strcmp]
|
|
|
|
_main:
|
|
push dword string1
|
|
push dword string2
|
|
call _strcmp
|
|
add esp,8 ; doh! clear up stack ;-)
|
|
ret
|
|
|
|
[SECTION .data]
|
|
|
|
string1: db 'abc',0 ; try changing these strings and see
|
|
string2: db 'abd',0 ; what happens!
|