1str_equal(3) Library Functions Manual str_equal(3)
23
4
NAME
6str_equal - compare two ASCIIZ strings
7
SYNTAX
9#include <str.h>
1011
size_t str_equal(const char* a,const char* b);
12
DESCRIPTION
14str_equal returns nonzero if a and b match up to and including the
15first occurrance of \0.
1617
If the strings are different, str_equal does not read bytes past the
18first difference.
19
SEE ALSO
21strlen(3)
2223
24
25
str_equal(3)