ref: d687b4ee0c7ac58d9a9e5e50fb1813f47f17681d
dir: /src/print.h/
/* This file is part of REWise. * * REWise 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 * (at your option) any later version. * * REWise 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 <https://www.gnu.org/licenses/>. */ #ifndef H_REWISE_PRINT #define H_REWISE_PRINT enum __PrintFlags { PRINT_SILENT = 0, PRINT_INFO = 1, PRINT_WARNING = 2, PRINT_ERROR = 4, PRINT_DEBUG = 8 }; void setPrintFlags(enum __PrintFlags flags); void setPrintFlag(enum __PrintFlags flag); void unsetPrintFlag(enum __PrintFlags flag); void printInfo(const char * fmt, ...); void printWarning(const char * fmt, ...); void printError(const char * fmt, ...); void printDebug(const char * fmt, ...); #endif