diff --git a/src/errors.h b/src/errors.h deleted file mode 100644 index 0f71212..0000000 --- a/src/errors.h +++ /dev/null @@ -1,32 +0,0 @@ -/* - * This file is part of uIRC. (https://git.redxen.eu/caskd/uIRC) - * Copyright (c) 2019, 2020 Alex-David Denes - * - * 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 . - */ - -/*! \file */ - -#ifndef UIRC_GUARD_PUBLIC_ERRORS -#define UIRC_GUARD_PUBLIC_ERRORS - -enum uirc_errors { - UIRC_ERROR_GENERIC = -1, - UIRC_ERR_BUFFER_FULL = -2, - UIRC_ERR_BUFFER_ERR = -3, - UIRC_ERR_INVALID_FORMAT = -4, -}; - -#endif /* UIRC_GUARD_PUBLIC_ERRORS */ - diff --git a/src/tokenizers/user.c b/src/tokenizers/user.c index 0121968..c2b61db 100644 --- a/src/tokenizers/user.c +++ b/src/tokenizers/user.c @@ -16,7 +16,6 @@ * along with uIRC. If not, see . */ -#include "../errors.h" // ERR_UIRC_* #include "../memory/memory.h" // Free_IRC_User() #include "../types.h" // IRC_User #include "tokenizers.h" // Tok_user()