shithub: rewise

ref: eefded827f06cef7aca1ff2fc4900facd856d272
dir: /src/print.h/

View raw version
/* 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