diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-07-22 01:31:37 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-07-22 01:31:37 +0300 |
commit | 63a314144a36691a57c2e82fe2f3da008c403aba (patch) | |
tree | 2219fcb0600c76a6ede6d0d0303d7b96e8d98faf /src/stdio-commands.h | |
parent | dd8f6f3fe80fc8d59a9d8b2927cfb443912eee6c (diff) | |
download | sciteco-63a314144a36691a57c2e82fe2f3da008c403aba.tar.gz |
refactored =/==/=== command into stdio-commands.c
There will be a lot more commands for terminal/message
input and output soon.
Diffstat (limited to 'src/stdio-commands.h')
-rw-r--r-- | src/stdio-commands.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/stdio-commands.h b/src/stdio-commands.h new file mode 100644 index 0000000..b795c08 --- /dev/null +++ b/src/stdio-commands.h @@ -0,0 +1,21 @@ +/* + * Copyright (C) 2012-2025 Robin Haberkorn + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +#pragma once + +#include "parser.h" + +TECO_DECLARE_STATE(teco_state_print_decimal); |