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/src/validators/validators.c

57 lines
1.4 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
*/
#include "validators.h"
2020-07-22 16:57:59 +00:00
#include <assert.h> // assert()
#include <stdio.h> // NULL
#include <string.h> // strchr()
2020-07-22 16:57:59 +00:00
size_t
uirc_validator_string_nocrlf(const char* str)
2020-07-22 16:57:59 +00:00
{
assert(str != NULL);
const char* save = str;
2020-07-22 16:57:59 +00:00
for (; *str; str++) {
2020-10-10 10:30:05 +00:00
if (*str == '\r' || *str == '\n') return 0;
2020-07-22 16:57:59 +00:00
}
return (size_t)(str - save);
2020-07-22 16:57:59 +00:00
}
size_t
uirc_validator_string_nospcl(const char* str)
2020-07-22 16:57:59 +00:00
{
assert(str != NULL);
const char* save = str;
2020-07-22 16:57:59 +00:00
for (; *str; str++) {
2020-10-10 10:30:05 +00:00
if (*str == ' ' || *str == ':') return 0;
2020-07-22 16:57:59 +00:00
}
return (size_t)(str - save);
2020-07-22 16:57:59 +00:00
}
size_t
uirc_validator_string_noblcm(const char* str)
2020-07-22 16:57:59 +00:00
{
assert(str != NULL);
const char* save = str;
2020-07-22 16:57:59 +00:00
for (; *str; str++) {
2020-10-10 10:30:05 +00:00
if (*str == '\a' || *str == ',') return 0;
2020-07-22 16:57:59 +00:00
}
return (size_t)(str - save);
2020-07-22 16:57:59 +00:00
}