/
niceSOFT
/
shadow
Обзор
Документация
Войти
/
niceSOFT
/
shadow
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/string/strcmp/streq.h
18 строк
354 B
Alejandro Colomar
lib/string/strcmp/: str{,case}eq(): Simplify implementation
28 фев 2026, 06:03
28 фев 2026, 06:03
0983531
Код
Авторство
О чём код?
// SPDX-FileCopyrightText: 2024-2026, Alejandro Colomar <alx@kernel.org> // SPDX-License-Identifier: BSD-3-Clause #ifndef SHADOW_INCLUDE_LIB_STRING_STRCMP_STREQ_H_ #define SHADOW_INCLUDE_LIB_STRING_STRCMP_STREQ_H_ #include "config.h" #include <string.h> // streq - strings equal #define streq(s1, s2) (!strcmp(s1, s2)) #endif // include guard