1str_equal(3) Library Functions Manual str_equal(3)234
NAME
6str_equal - compare two ASCIIZ strings7
SYNTAX
9#include <str.h>1011size_t str_equal(const char* a,const char* b);12
DESCRIPTION
14str_equal returns nonzero if a and b match up to and including the15first occurrance of \0.1617If the strings are different, str_equal does not read bytes past the18first difference.19
SEE ALSO
21strlen(3)22232425str_equal(3)