binaryninja/commercial/scc-docs/strcmp.txt

15 lines
354 B
Plaintext
Raw Normal View History

2018-12-13 18:39:52 +00:00
strcmp
======
:title: Shellcode Compiler Runtime
---------------------------------------------
int strcmp(const char* a, const char* b);
---------------------------------------------
Compares two strings `a` and `b`. Returns one of the following:
* `a` < `b`: Returns less than zero
* `a` == `b`: Returns zero
* `a` > `b`: Returns greater than zero