diff options
Diffstat (limited to 'src/blogc/funcvars.h')
-rw-r--r-- | src/blogc/funcvars.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/blogc/funcvars.h b/src/blogc/funcvars.h index aae1bc3..d75597f 100644 --- a/src/blogc/funcvars.h +++ b/src/blogc/funcvars.h @@ -1,13 +1,7 @@ -/* - * blogc: A blog compiler. - * Copyright (C) 2014-2019 Rafael G. Martins <rafael@rafaelmartins.eng.br> - * - * This program can be distributed under the terms of the BSD License. - * See the file LICENSE. - */ +// SPDX-FileCopyrightText: 2014-2024 Rafael G. Martins <rafael@rafaelmartins.eng.br> +// SPDX-License-Identifier: BSD-3-Clause -#ifndef ___FUNCVARS_H -#define ___FUNCVARS_H +#pragma once #include <stdbool.h> #include "../common/utils.h" @@ -15,5 +9,3 @@ typedef void (*blogc_funcvars_func_t) (bc_trie_t*); void blogc_funcvars_eval(bc_trie_t *global, const char *name); - -#endif /* ___FUNCVARS_H */ |