13 lines
311 B
C
13 lines
311 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 William Bell
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#include "returnTypes.h"
|
|
|
|
extern const ArErr no_err;
|
|
|
|
ArErr create_err(int64_t line, int64_t column, int length, char *path, const char *type,
|
|
const char *fmt, ...);
|
|
void output_err(ArErr err); |