binaryninja/personal/scc-docs/strchr.txt

15 lines
402 B
Plaintext
Raw Normal View History

2019-04-03 14:46:40 +01:00
strchr
======
:title: Shellcode Compiler Runtime
---------------------------------------------
char* strchr(const char* str, char ch);
---------------------------------------------
Finds the first occurance of the character `ch` in string `str`, and returns a pointer to the character. If the
character does not occur in the string, `NULL` is returned.
See also
--------
link:strrchr.html[strrchr]