1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
'\" t
.\" Copyright, the authors of the Linux man-pages project
.\"
.\" SPDX-License-Identifier: Linux-man-pages-copyleft
.\"
.TH streq 3 2025-09-20 "Linux man-pages (unreleased)"
.SH NAME
streq \- strings equal
.SH LIBRARY
gnulib \- The GNU Portability Library
.SH SYNOPSIS
.nf
.B #include <string.h>
.P
.BI "bool streq(const char *" s1 ", const char *" s2 );
.fi
.SH DESCRIPTION
.BR streq ()
determines whether the strings
.I s1
and
.I s2
are equal.
.SH RETURN VALUE
.BR streq ()
returns true if and only if the strings
.I s1
and
.I s2
are equal.
.SH ATTRIBUTES
For an explanation of the terms used in this section, see
.BR attributes (7).
.TS
allbox;
lbx lb lb
l l l.
Interface Attribute Value
T{
.na
.nh
.BR streq ()
T} Thread safety MT-Safe
.TE
.SH STANDARDS
GNU.
.SH HISTORY
gnulib 202601.
.SH SEE ALSO
.BR memeq (3),
.BR strcmp (3),
.BR string (3)
|