/* * Copyright (c) 2020-2022 Thakee Nathees * Copyright (c) 2021-2022 Pocketlang Contributors * Distributed Under The MIT License */ #ifndef COMMON_H #define COMMON_H #include #include #include #include #include #include #include #include "modules/common.h" #define CLI_NOTICE \ "PocketLang " PK_VERSION_STRING " (https://github.com/ThakeeNathees/pocketlang/)\n" \ "Copyright (c) 2020 - 2021 ThakeeNathees\n" \ "Copyright (c) 2021-2022 Pocketlang Contributors\n" \ "Free and open source software under the terms of the MIT license.\n" // FIXME: the vm user data of cli. typedef struct { bool repl_mode; } VmUserData; #endif // COMMON_H