shithub: rgbds

ref: c2ca46c27d622a17c6248782d628c89c49bfb972
dir: /include/error.h/

View raw version
/*
 * This file is part of RGBDS.
 *
 * Copyright (c) 1997-2021, RGBDS contributors.
 *
 * SPDX-License-Identifier: MIT
 */

#ifndef RGBDS_ERROR_H
#define RGBDS_ERROR_H

#include "helpers.h"
#include "platform.h"

void warn(char const NONNULL(fmt), ...) format_(printf, 1, 2);
void warnx(char const NONNULL(fmt), ...) format_(printf, 1, 2);

_Noreturn void err(char const NONNULL(fmt), ...) format_(printf, 1, 2);
_Noreturn void errx(char const NONNULL(fmt), ...) format_(printf, 1, 2);

#endif /* RGBDS_ERROR_H */