28 lines
998 B
C++
28 lines
998 B
C++
|
/*
|
||
|
* Copyright (C) 2022 luca0N!
|
||
|
*
|
||
|
* This file is part of Static Website Generator (swg).
|
||
|
*
|
||
|
* Static Website Generator (swg) is free software: you can redistribute it
|
||
|
* and/or modify it under the terms of the version 3 of the GNU Lesser General
|
||
|
* Public License as published by the Free Software Foundation.
|
||
|
*
|
||
|
* Static Website Generator (swg) is distributed in the hope that it will be
|
||
|
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
|
||
|
* General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public License
|
||
|
* along with Static Website Generator (swg). If not, see
|
||
|
* <https://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
* Contact luca0N! by e-mail: <luca0n [at] luca0n [dot] com>.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
// Utilities for options set during runtime by the end-user (i.e. through command line options).
|
||
|
|
||
|
bool swg_rt_global_bool(const char *name, bool ifne);
|
||
|
|