binaryninja/personal/scc-docs/strcmp.txt

15 lines
354 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01: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