yait

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 61a8f617c61c1141ba18636fa24a2b95c7ddc7da
parent 786774e84ec0a7603ca4ca4699d87fbfe7b707a4
Author: vx-clutch <[email protected]>
Date:   Sat, 13 Sep 2025 19:07:16 -0400

remove unneeded file

Diffstat:
Dsrc/licence.h | 35-----------------------------------
1 file changed, 0 insertions(+), 35 deletions(-)

diff --git a/src/licence.h b/src/licence.h @@ -1,35 +0,0 @@ -/* Copyright (C) vx_clutch - * - * This file is part of yait - * - * This project and file is licensed under the BSD-3-Clause licence. - * <https://opensource.org/licence/bsd-3-clause> - */ - -#ifndef LICENCE_H -#define LICENCE_H - -#include <stdlib.h> - -#include "../include/yait.h" - -static char *lget(licence_t licence) -{ - switch (licence) { - case UNL: - return ""; - case MIT: - return ""; - case GPL: - return ""; - case BSD: - return ""; - - case _LICENCE_COUNT_: - default: - abort(); - } - return ""; -} - -#endif