From 047ccc5f16428d42e6321aa4be5b695b9dacad87 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Mon, 23 Jan 2023 21:45:52 +0000 Subject: [PATCH] Prepended file names with "toy_" --- source/{ast_node.c => toy_ast_node.c} | 0 source/{ast_node.h => toy_ast_node.h} | 0 source/{builtin.c => toy_builtin.c} | 0 source/{builtin.h => toy_builtin.h} | 0 source/{compiler.c => toy_compiler.c} | 0 source/{compiler.h => toy_compiler.h} | 0 source/{console_colors.h => toy_console_colors.h} | 0 source/{interpreter.c => toy_interpreter.c} | 0 source/{interpreter.h => toy_interpreter.h} | 0 source/{keyword_types.c => toy_keyword_types.c} | 0 source/{keyword_types.h => toy_keyword_types.h} | 0 source/{lexer.c => toy_lexer.c} | 0 source/{lexer.h => toy_lexer.h} | 0 source/{literal.c => toy_literal.c} | 0 source/{literal.h => toy_literal.h} | 0 source/{literal_array.c => toy_literal_array.c} | 0 source/{literal_array.h => toy_literal_array.h} | 0 source/{literal_dictionary.c => toy_literal_dictionary.c} | 0 source/{literal_dictionary.h => toy_literal_dictionary.h} | 0 source/{memory.c => toy_memory.c} | 0 source/{memory.h => toy_memory.h} | 0 source/{opcodes.h => toy_opcodes.h} | 0 source/{parser.c => toy_parser.c} | 0 source/{parser.h => toy_parser.h} | 0 source/{refstring.c => toy_refstring.c} | 0 source/{refstring.h => toy_refstring.h} | 0 source/{scope.c => toy_scope.c} | 0 source/{scope.h => toy_scope.h} | 0 source/{token_types.h => toy_token_types.h} | 0 29 files changed, 0 insertions(+), 0 deletions(-) rename source/{ast_node.c => toy_ast_node.c} (100%) rename source/{ast_node.h => toy_ast_node.h} (100%) rename source/{builtin.c => toy_builtin.c} (100%) rename source/{builtin.h => toy_builtin.h} (100%) rename source/{compiler.c => toy_compiler.c} (100%) rename source/{compiler.h => toy_compiler.h} (100%) rename source/{console_colors.h => toy_console_colors.h} (100%) rename source/{interpreter.c => toy_interpreter.c} (100%) rename source/{interpreter.h => toy_interpreter.h} (100%) rename source/{keyword_types.c => toy_keyword_types.c} (100%) rename source/{keyword_types.h => toy_keyword_types.h} (100%) rename source/{lexer.c => toy_lexer.c} (100%) rename source/{lexer.h => toy_lexer.h} (100%) rename source/{literal.c => toy_literal.c} (100%) rename source/{literal.h => toy_literal.h} (100%) rename source/{literal_array.c => toy_literal_array.c} (100%) rename source/{literal_array.h => toy_literal_array.h} (100%) rename source/{literal_dictionary.c => toy_literal_dictionary.c} (100%) rename source/{literal_dictionary.h => toy_literal_dictionary.h} (100%) rename source/{memory.c => toy_memory.c} (100%) rename source/{memory.h => toy_memory.h} (100%) rename source/{opcodes.h => toy_opcodes.h} (100%) rename source/{parser.c => toy_parser.c} (100%) rename source/{parser.h => toy_parser.h} (100%) rename source/{refstring.c => toy_refstring.c} (100%) rename source/{refstring.h => toy_refstring.h} (100%) rename source/{scope.c => toy_scope.c} (100%) rename source/{scope.h => toy_scope.h} (100%) rename source/{token_types.h => toy_token_types.h} (100%) diff --git a/source/ast_node.c b/source/toy_ast_node.c similarity index 100% rename from source/ast_node.c rename to source/toy_ast_node.c diff --git a/source/ast_node.h b/source/toy_ast_node.h similarity index 100% rename from source/ast_node.h rename to source/toy_ast_node.h diff --git a/source/builtin.c b/source/toy_builtin.c similarity index 100% rename from source/builtin.c rename to source/toy_builtin.c diff --git a/source/builtin.h b/source/toy_builtin.h similarity index 100% rename from source/builtin.h rename to source/toy_builtin.h diff --git a/source/compiler.c b/source/toy_compiler.c similarity index 100% rename from source/compiler.c rename to source/toy_compiler.c diff --git a/source/compiler.h b/source/toy_compiler.h similarity index 100% rename from source/compiler.h rename to source/toy_compiler.h diff --git a/source/console_colors.h b/source/toy_console_colors.h similarity index 100% rename from source/console_colors.h rename to source/toy_console_colors.h diff --git a/source/interpreter.c b/source/toy_interpreter.c similarity index 100% rename from source/interpreter.c rename to source/toy_interpreter.c diff --git a/source/interpreter.h b/source/toy_interpreter.h similarity index 100% rename from source/interpreter.h rename to source/toy_interpreter.h diff --git a/source/keyword_types.c b/source/toy_keyword_types.c similarity index 100% rename from source/keyword_types.c rename to source/toy_keyword_types.c diff --git a/source/keyword_types.h b/source/toy_keyword_types.h similarity index 100% rename from source/keyword_types.h rename to source/toy_keyword_types.h diff --git a/source/lexer.c b/source/toy_lexer.c similarity index 100% rename from source/lexer.c rename to source/toy_lexer.c diff --git a/source/lexer.h b/source/toy_lexer.h similarity index 100% rename from source/lexer.h rename to source/toy_lexer.h diff --git a/source/literal.c b/source/toy_literal.c similarity index 100% rename from source/literal.c rename to source/toy_literal.c diff --git a/source/literal.h b/source/toy_literal.h similarity index 100% rename from source/literal.h rename to source/toy_literal.h diff --git a/source/literal_array.c b/source/toy_literal_array.c similarity index 100% rename from source/literal_array.c rename to source/toy_literal_array.c diff --git a/source/literal_array.h b/source/toy_literal_array.h similarity index 100% rename from source/literal_array.h rename to source/toy_literal_array.h diff --git a/source/literal_dictionary.c b/source/toy_literal_dictionary.c similarity index 100% rename from source/literal_dictionary.c rename to source/toy_literal_dictionary.c diff --git a/source/literal_dictionary.h b/source/toy_literal_dictionary.h similarity index 100% rename from source/literal_dictionary.h rename to source/toy_literal_dictionary.h diff --git a/source/memory.c b/source/toy_memory.c similarity index 100% rename from source/memory.c rename to source/toy_memory.c diff --git a/source/memory.h b/source/toy_memory.h similarity index 100% rename from source/memory.h rename to source/toy_memory.h diff --git a/source/opcodes.h b/source/toy_opcodes.h similarity index 100% rename from source/opcodes.h rename to source/toy_opcodes.h diff --git a/source/parser.c b/source/toy_parser.c similarity index 100% rename from source/parser.c rename to source/toy_parser.c diff --git a/source/parser.h b/source/toy_parser.h similarity index 100% rename from source/parser.h rename to source/toy_parser.h diff --git a/source/refstring.c b/source/toy_refstring.c similarity index 100% rename from source/refstring.c rename to source/toy_refstring.c diff --git a/source/refstring.h b/source/toy_refstring.h similarity index 100% rename from source/refstring.h rename to source/toy_refstring.h diff --git a/source/scope.c b/source/toy_scope.c similarity index 100% rename from source/scope.c rename to source/toy_scope.c diff --git a/source/scope.h b/source/toy_scope.h similarity index 100% rename from source/scope.h rename to source/toy_scope.h diff --git a/source/token_types.h b/source/toy_token_types.h similarity index 100% rename from source/token_types.h rename to source/toy_token_types.h