binaryninja/scc-docs/strcmp.txt
Giulio De Pasquale 52e9dc828b dindon
2018-12-13 18:39:52 +00:00

15 lines
354 B
Plaintext

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