X-Git-Url: https://deadsoftware.ru/gitweb?p=flatwaifu.git;a=blobdiff_plain;f=src%2Ferror.h;h=400a70fe19bc2c4c56c7172854b553773d8125cb;hp=6e4e61db504e80afeab2d1c350d470885aee7728;hb=ef16dea09f87b15fc6d58fae0aa0832e0648c00e;hpb=a2115940e7643dcb1b87286f3d19fe95f7b79bd3 diff --git a/src/error.h b/src/error.h index 6e4e61d..400a70f 100644 --- a/src/error.h +++ b/src/error.h @@ -1,27 +1,27 @@ -/* - Copyright (C) Prikol Software 1996-1997 - Copyright (C) Aleksey Volynskov 1996-1997 - Copyright (C) 2011 +/* Copyright (C) 1996-1997 Aleksey Volynskov + * Copyright (C) 2011 Rambo + * Copyright (C) 2020 SovietPony + * + * This program 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, version 3 of the License ONLY. + * + * This program 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 this program. If not, see . + */ - This file is part of the Doom2D:Rembo project. +#ifndef ERROR_H_INCLUDED +#define ERROR_H_INCLUDED - Doom2D:Rembo is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License version 2 as - published by the Free Software Foundation. +void logo (const char *s, ...); +void logo_gas (int cur, int all); +void ERR_failinit (char *s, ...); +void ERR_fatal (char *s, ...); +void ERR_quit (void); - Doom2D:Rembo 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 this program; if not, see or - write to the Free Software Foundation, Inc., - 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -// Error handling - -void ERR_failinit(char *,...); -void ERR_fatal(char *,...); -void ERR_quit(void); +#endif /* ERROR_H_INCLUDED */