This repository has been archived on 2021-04-17. You can view files and clone it, but cannot push or open issues or pull requests.
uIRC/include/uirc/validator.h

34 lines
1.1 KiB
C
Raw Normal View History

2020-07-22 16:57:59 +00:00
/*
* This file is part of uIRC. (https://git.redxen.eu/caskd/uIRC)
2021-03-11 22:52:30 +00:00
* Copyright (c) 2019-2021 Alex-David Denes
2020-07-22 16:57:59 +00:00
*
* uIRC is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* uIRC is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with uIRC. If not, see <https://www.gnu.org/licenses/>.
2020-10-10 10:30:05 +00:00
*/
/*! \file */
2021-04-16 18:10:33 +00:00
#include "uirc/type.h" // IRC_Message
#include <sys/types.h>
#ifndef UIRC_GUARD_PUBLIC_VALIDATORS
#define UIRC_GUARD_PUBLIC_VALIDATORS
2021-04-02 17:21:11 +00:00
size_t uirc_validator_string_nocrlf(const char* str);
size_t uirc_validator_string_nospcl(const char* str);
size_t uirc_validator_string_noblcm(const char* str);
#endif /* UIRC_GUARD_PUBLIC_VALIDATORS */