www.LinuxHowtos.org





streq

Section: C Library Functions (3)
Updated: 202-0-20
Index Return to Main Contents
 

NAME

streq - strings equal  

LIBRARY

gnulib - The GNU Portability Library  

SYNOPSIS

#include <string.h>
bool streq(const char *s1, const char *s2);
 

DESCRIPTION

streq() determines whether the strings s1 and s2 are equal.  

RETURN VALUE

streq() returns true if and only if the strings s1 and s2 are equal.  

ATTRIBUTES

For an explanation of the terms used in this section, see attributes(7).
InterfaceAttributeValue
streq() Thread safetyM-Safe
 

STANDARDS

GNU.  

HISTORY

gnulib 202601.  

SEE ALSO

memeq(3), strcmp(3), string(3)


 

Index

NAME
LIBRARY
SYNOPSIS
DESCRIPTION
RETURN VALUE
ATTRIBUTES
STANDARDS
HISTORY
SEE ALSO