Skip to content

Commit

Permalink
chore: add head to util_dsl.c
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoDornelles committed Oct 24, 2023
1 parent c236b4c commit c66a40b
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions src/util/util_dsl.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
/**
* @internal
* ___________ _____ _
* |____ | ___ \/ __ \ | |
* / / |_/ /| / \/ | | __ _ _ __ __ _ _ _ __ _ __ _ ___
* \ \ ___ \| | | |/ _` | '_ \ / _` | | | |/ _` |/ _` |/ _ \
* .___/ / |_/ /| \__/\ | | (_| | | | | (_| | |_| | (_| | (_| | __/
* \____/\____/ \____/ |_|\__,_|_| |_|\__, |\__,_|\__,_|\__, |\___|
* __/ | __/ |
* |___/ |___/
* @endinternal
* @file util_dsl.c
*
* @short
* domain specific language utility
*
* @brief
* Utility for writing simple language lexers without precedence tracking
*
* @copyright
* Low-level language, tiny virtual machine, intermediate representation, \n
* embeddable, easy for beginners. (Friendly Punched cards) \n
* \n
* Copyright (C) 2020 Rodrigo Dornelles. \n
* \n
* This program is free software: you can redistribute it and/or modify \n
* it under the terms of the GNU Affero General Public License as published \n
* by the Free Software Foundation, either version 3 of the License, \n
* or any later version. \n
* \n
* This program is distributed in the hope that it will be useful, \n
* but WITHOUT ANY WARRANTY; without even the implied warranty of \n
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the \n
* GNU Affero General Public License for more details. \n
* \n
* You should have received a copy of the GNU Affero General Public License \n
* along with this program. If not, see <https://www.gnu.org/licenses/>. \n
*/

#include <stdbool.h>
#include "util_dsl.h"
#include "types/types_null.h"
Expand Down

0 comments on commit c66a40b

Please sign in to comment.