This repository has been archived on 2023-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
feuille/util.h

22 lines
474 B
C
Raw Normal View History

2022-11-21 10:43:22 +01:00
/*
* util.h
* util.c header declarations.
*
* Copyright (c) 2022
* Tom MTT. <tom@heimdall.pm>
*
* This file is licensed under the 3-Clause BSD License.
* You should have received a copy of the 3-Clause BSD License
* along with this program. If not, see
* <https://basedwa.re/tmtt/feuille/src/branch/main/LICENSE>.
*/
#ifndef _UTIL_H_
#define _UTIL_H_
void die(int, char *, ...);
void error(char *, ...);
void verbose(int, char *, ...);
#endif