├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── codecov.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── ast ├── access_spec_decl.go ├── access_spec_decl_test.go ├── aligned_attr.go ├── aligned_attr_test.go ├── alloc_align_attr.go ├── alloc_align_attr_test.go ├── alloc_size_attr.go ├── alloc_size_attr_test.go ├── always_inline_attr.go ├── always_inline_attr_test.go ├── annotate_attr.go ├── annotate_attr_test.go ├── array_filler.go ├── array_filler_test.go ├── array_subscript_expr.go ├── array_subscript_expr_test.go ├── asm_label_attr.go ├── asm_label_attr_test.go ├── ast.go ├── ast_test.go ├── attributed_type.go ├── attributed_type_test.go ├── availability_attr.go ├── availability_attr_test.go ├── binary_conditional_operator.go ├── binary_conditional_operator_test.go ├── binary_operator.go ├── binary_operator_test.go ├── block_command_comment.go ├── block_command_comment_test.go ├── break_stmt.go ├── break_stmt_test.go ├── builtin_attr.go ├── builtin_attr_test.go ├── builtin_type.go ├── builtin_type_test.go ├── c11_no_return_attr.go ├── c11_no_return_attr_test.go ├── c4go_error_node.go ├── c4go_error_node_test.go ├── c_style_cast_expr.go ├── c_style_cast_expr_test.go ├── call_expr.go ├── call_expr_test.go ├── case_stmt.go ├── case_stmt_test.go ├── character_literal.go ├── character_literal_test.go ├── compound_assign_operator.go ├── compound_assign_operator_test.go ├── compound_literal_expr.go ├── compound_literal_expr_test.go ├── compound_stmt.go ├── compound_stmt_test.go ├── conditional_operator.go ├── conditional_operator_test.go ├── const_attr.go ├── const_attr_test.go ├── constant_array_type.go ├── constant_array_type_test.go ├── constant_expr.go ├── constant_expr_test.go ├── continue_stmt.go ├── continue_stmt_test.go ├── cxx_construct_expr.go ├── cxx_construct_expr_test.go ├── cxx_constructor_decl.go ├── cxx_constructor_decl_test.go ├── cxx_member_call_expr.go ├── cxx_member_call_expr_test.go ├── cxx_method_decl.go ├── cxx_method_decl_test.go ├── cxx_record.go ├── cxx_record_decl.go ├── cxx_record_decl_test.go ├── cxx_record_test.go ├── cxx_this_expr.go ├── cxx_this_expr_test.go ├── decayed_type.go ├── decayed_type_test.go ├── decl_ref_expr.go ├── decl_ref_expr_test.go ├── decl_stmt.go ├── decl_stmt_test.go ├── default_stmt.go ├── default_stmt_test.go ├── deprecated_attr.go ├── deprecated_attr_test.go ├── disable_tail_calls_attr.go ├── disable_tail_calls_attr_test.go ├── do_stmt.go ├── do_stmt_test.go ├── elaborated_type.go ├── elaborated_type_test.go ├── empty_decl.go ├── empty_decl_test.go ├── enable_if_attr.go ├── enable_if_attr_test.go ├── enum.go ├── enum_constant_decl.go ├── enum_constant_decl_test.go ├── enum_decl.go ├── enum_decl_test.go ├── enum_test.go ├── enum_type.go ├── enum_type_test.go ├── field.go ├── field_decl.go ├── field_decl_test.go ├── field_test.go ├── floating_literal.go ├── floating_literal_test.go ├── for_stmt.go ├── for_stmt_test.go ├── format_arg_attr.go ├── format_arg_attr_test.go ├── format_attr.go ├── format_attr_test.go ├── full_comment.go ├── full_comment_test.go ├── function_decl.go ├── function_decl_test.go ├── function_no_proto_type.go ├── function_no_proto_type_test.go ├── function_proto_type.go ├── function_proto_type_test.go ├── gcc_asm_stmt.go ├── gcc_asm_stmt_test.go ├── generic_selection_expr.go ├── generic_selection_expr_test.go ├── go_stmt.go ├── go_stmt_test.go ├── html_end_tag_comment.go ├── html_end_tag_comment_test.go ├── html_start_tag_comment.go ├── html_start_tag_comment_test.go ├── if_stmt.go ├── if_stmt_test.go ├── implicit_cast_expr.go ├── implicit_cast_expr_test.go ├── implicit_value_init_expr.go ├── implicit_value_init_expr_test.go ├── incomplete_array_type.go ├── incomplete_array_type_test.go ├── indirect_field_decl.go ├── indirect_field_decl_test.go ├── init_list_expr.go ├── init_list_expr_test.go ├── inline_command_comment.go ├── inline_command_comment_test.go ├── integer_literal.go ├── integer_literal_test.go ├── label_stmt.go ├── label_stmt_test.go ├── linkage_spec_decl.go ├── linkage_spec_decl_test.go ├── malloc_attr.go ├── malloc_attr_test.go ├── max_field_alignment_attr.go ├── max_field_alignment_attr_test.go ├── member_expr.go ├── member_expr_test.go ├── mode_attr.go ├── mode_attr_test.go ├── no_alias_attr.go ├── no_alias_attr_test.go ├── no_inline_attr.go ├── no_inline_attr_test.go ├── no_throw_attr.go ├── no_throw_attr_test.go ├── non_null_attr.go ├── non_null_attr_test.go ├── not_tail_called_attr.go ├── not_tail_called_attr_test.go ├── offset_of_expr.go ├── offset_of_expr_test.go ├── opaque_value_expr.go ├── opaque_value_expr_test.go ├── overloadable_attr.go ├── overloadable_attr_test.go ├── packed_attr.go ├── packed_attr_test.go ├── paragraph_comment.go ├── paragraph_comment_test.go ├── param_command_comment.go ├── param_command_comment_test.go ├── paren_expr.go ├── paren_expr_test.go ├── paren_type.go ├── paren_type_test.go ├── parm_var_decl.go ├── parm_var_decl_test.go ├── pointer_type.go ├── pointer_type_test.go ├── position.go ├── position_test.go ├── predefined_expr.go ├── predefined_expr_test.go ├── pure_attr.go ├── pure_attr_test.go ├── qual_type.go ├── qual_type_test.go ├── record.go ├── record_decl.go ├── record_decl_test.go ├── record_test.go ├── record_type.go ├── record_type_test.go ├── restrict_attr.go ├── restrict_attr_test.go ├── return_stmt.go ├── return_stmt_test.go ├── returns_twice_attr.go ├── returns_twice_attr_test.go ├── sentinel_attr.go ├── sentinel_attr_test.go ├── static_assert_decl.go ├── static_assert_decl_test.go ├── stmt_expr.go ├── stmt_expr_test.go ├── string_literal.go ├── string_literal_test.go ├── switch_stmt.go ├── switch_stmt_test.go ├── text_comment.go ├── text_comment_test.go ├── translation_unit_decl.go ├── translation_unit_decl_test.go ├── transparent_union_attr.go ├── transparent_union_attr_test.go ├── traverse.go ├── typedef.go ├── typedef_decl.go ├── typedef_decl_test.go ├── typedef_test.go ├── typedef_type.go ├── typedef_type_test.go ├── unary_expr_or_type_trait_expr.go ├── unary_expr_or_type_trait_expr_test.go ├── unary_operator.go ├── unary_operator_test.go ├── unused_attr.go ├── unused_attr_test.go ├── used_attr.go ├── used_attr_test.go ├── util.go ├── util_test.go ├── va_arg_expr.go ├── va_arg_expr_test.go ├── var_decl.go ├── var_decl_test.go ├── verbatim_block_comment.go ├── verbatim_block_comment_test.go ├── verbatim_block_line_comment.go ├── verbatim_block_line_comment_test.go ├── verbatim_line_comment.go ├── verbatim_line_comment_test.go ├── visibility_attr.go ├── visibility_attr_test.go ├── warn_unused_result_attr.go ├── warn_unused_result_attr_test.go ├── weak_attr.go ├── weak_attr_test.go ├── while_stmt.go └── while_stmt_test.go ├── bind_test.go ├── cli_test.go ├── codecov.yml ├── cstd_test.go ├── debug.go ├── examples ├── ap.c ├── fib.c ├── math.c └── prime.c ├── go.mod ├── go.sum ├── main.go ├── main_test.go ├── noarch ├── ctype.go ├── errno.go ├── fcntl.go ├── ioctl.go ├── locale.go ├── noarch.go ├── signal.go ├── stddef.go ├── stdio.go ├── stdlib.go ├── string.go ├── sys_resource.go ├── sys_time.go ├── termios.go ├── time.go ├── unistd.go ├── util.go ├── util_test.go └── wchar.go ├── other_test.go ├── preprocessor ├── compiler.go ├── parse_comments_test.go ├── parse_include_list.go ├── parse_include_list_test.go ├── parse_include_preprocessor_line.go ├── parse_include_preprocessor_line_test.go ├── preprocessor.go └── preprocessor_test.go ├── program ├── cstd.go ├── definition_function.go ├── definition_struct.go ├── definition_type.go ├── definition_variable.go ├── import.go ├── program.go ├── struct.go └── warnings.go ├── scripts ├── 9wm.sh ├── brainfuck.sh ├── cis71.sh ├── code_quality.sh ├── easymesh.sh ├── ed.sh ├── gsl.sh ├── gtk.sh ├── kilo.sh ├── lint.sh ├── minmad.sh ├── neateqn.sh ├── neatmail.sh ├── neatmkfn.sh ├── neatpost.sh ├── neatrefer.sh ├── neatroff.sh ├── neatvi.sh ├── nuklear.sh ├── progress.sh ├── redis.sh ├── scripts.sh ├── scripts.txt ├── sqlite.sh ├── test.sh ├── tiny_web_server.sh ├── triangle.sh └── vorbis.sh ├── tests ├── ap.c ├── argv.c ├── array.c ├── asm.c ├── assert.c ├── ast │ └── ast.c ├── bind │ ├── bind.c │ ├── test.c │ └── test.h ├── c4go-TestCLI-func1-AstHelpFlag ├── c4go-TestCLI-func1-AstNoFilesHelp ├── c4go-TestCLI-func1-DebugHelpFlag ├── c4go-TestCLI-func1-DebugNoFilesHelp ├── c4go-TestCLI-func1-TranspileHelpFlag ├── c4go-TestCLI-func1-TranspileNoFilesHelp ├── c4go-TestCLI-func1-UnusedHelpFlag ├── c4go-TestCLI-func1-UnusedNoFilesHelp ├── c4go-TestCLI-func1-Version ├── cast.c ├── class.cpp.todo ├── code_quality │ ├── ap.c │ ├── ap.go.expected │ ├── comments.c │ ├── comments.go.expected │ ├── define.c │ ├── define.go.expected │ ├── for.c │ ├── for.go.expected │ ├── function.c │ ├── function.go.expected │ ├── generate.sh │ ├── if.c │ ├── if.go.expected │ ├── operators.c │ ├── operators.go.expected │ ├── paren.c │ ├── paren.go.expected │ ├── return.c │ ├── return.go.expected │ ├── stdio.c │ ├── stdio.go.expected │ ├── switch.c │ ├── switch.go.expected │ ├── ternary.c │ ├── ternary.go.expected │ ├── unsafe.c │ └── unsafe.go.expected ├── comment │ └── main.c ├── ctype.c ├── do.c ├── empty.txt ├── enum.c ├── errno.c ├── exit.c ├── exit_status.c ├── externalHeader │ ├── include │ │ └── head.h │ └── main │ │ └── main.c ├── for.c ├── function.c ├── getchar.c ├── goto.c ├── if.c ├── init.c ├── ioctl.c ├── locale.c ├── math.c ├── memory.c ├── multi │ ├── err.h │ ├── header.h │ ├── main1.c │ └── main2.c ├── not.c ├── operators.c ├── raylib │ ├── CMakeLists.txt │ ├── Makefile │ ├── build.zig │ ├── config.h │ ├── external │ │ ├── cgltf.h │ │ ├── dirent.h │ │ ├── dr_flac.h │ │ ├── dr_mp3.h │ │ ├── dr_wav.h │ │ ├── glad.h │ │ ├── glfw │ │ │ ├── .mailmap │ │ │ ├── CMake │ │ │ │ ├── GenerateMappings.cmake │ │ │ │ ├── Info.plist.in │ │ │ │ ├── cmake_uninstall.cmake.in │ │ │ │ ├── glfw3.pc.in │ │ │ │ ├── glfw3Config.cmake.in │ │ │ │ ├── i686-w64-mingw32-clang.cmake │ │ │ │ ├── i686-w64-mingw32.cmake │ │ │ │ ├── modules │ │ │ │ │ ├── FindEpollShim.cmake │ │ │ │ │ └── FindOSMesa.cmake │ │ │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ │ │ └── x86_64-w64-mingw32.cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── deps │ │ │ │ ├── getopt.c │ │ │ │ ├── getopt.h │ │ │ │ ├── glad │ │ │ │ │ ├── gl.h │ │ │ │ │ ├── gles2.h │ │ │ │ │ └── vulkan.h │ │ │ │ ├── mingw │ │ │ │ │ ├── _mingw_dxhelper.h │ │ │ │ │ ├── dinput.h │ │ │ │ │ └── xinput.h │ │ │ │ └── vs2008 │ │ │ │ │ └── stdint.h │ │ │ ├── include │ │ │ │ └── GLFW │ │ │ │ │ ├── glfw3.h │ │ │ │ │ └── glfw3native.h │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cocoa_init.m │ │ │ │ ├── cocoa_joystick.h │ │ │ │ ├── cocoa_joystick.m │ │ │ │ ├── cocoa_monitor.m │ │ │ │ ├── cocoa_platform.h │ │ │ │ ├── cocoa_time.c │ │ │ │ ├── cocoa_time.h │ │ │ │ ├── cocoa_window.m │ │ │ │ ├── context.c │ │ │ │ ├── egl_context.c │ │ │ │ ├── glfw.rc.in │ │ │ │ ├── glx_context.c │ │ │ │ ├── init.c │ │ │ │ ├── input.c │ │ │ │ ├── internal.h │ │ │ │ ├── linux_joystick.c │ │ │ │ ├── linux_joystick.h │ │ │ │ ├── mappings.h │ │ │ │ ├── mappings.h.in │ │ │ │ ├── monitor.c │ │ │ │ ├── nsgl_context.m │ │ │ │ ├── null_init.c │ │ │ │ ├── null_joystick.c │ │ │ │ ├── null_joystick.h │ │ │ │ ├── null_monitor.c │ │ │ │ ├── null_platform.h │ │ │ │ ├── null_window.c │ │ │ │ ├── osmesa_context.c │ │ │ │ ├── platform.c │ │ │ │ ├── platform.h │ │ │ │ ├── posix_module.c │ │ │ │ ├── posix_poll.c │ │ │ │ ├── posix_poll.h │ │ │ │ ├── posix_thread.c │ │ │ │ ├── posix_thread.h │ │ │ │ ├── posix_time.c │ │ │ │ ├── posix_time.h │ │ │ │ ├── vulkan.c │ │ │ │ ├── wgl_context.c │ │ │ │ ├── win32_init.c │ │ │ │ ├── win32_joystick.c │ │ │ │ ├── win32_joystick.h │ │ │ │ ├── win32_module.c │ │ │ │ ├── win32_monitor.c │ │ │ │ ├── win32_platform.h │ │ │ │ ├── win32_thread.c │ │ │ │ ├── win32_thread.h │ │ │ │ ├── win32_time.c │ │ │ │ ├── win32_time.h │ │ │ │ ├── win32_window.c │ │ │ │ ├── window.c │ │ │ │ ├── wl_init.c │ │ │ │ ├── wl_monitor.c │ │ │ │ ├── wl_platform.h │ │ │ │ ├── wl_window.c │ │ │ │ ├── x11_init.c │ │ │ │ ├── x11_monitor.c │ │ │ │ ├── x11_platform.h │ │ │ │ ├── x11_window.c │ │ │ │ ├── xkb_unicode.c │ │ │ │ └── xkb_unicode.h │ │ ├── jar_mod.h │ │ ├── jar_xm.h │ │ ├── m3d.h │ │ ├── miniaudio.h │ │ ├── msf_gif.h │ │ ├── par_shapes.h │ │ ├── qoi.h │ │ ├── rl_gputex.h │ │ ├── sdefl.h │ │ ├── sinfl.h │ │ ├── stb_image.h │ │ ├── stb_image_resize.h │ │ ├── stb_image_write.h │ │ ├── stb_perlin.h │ │ ├── stb_rect_pack.h │ │ ├── stb_truetype.h │ │ ├── stb_vorbis.h │ │ ├── tinyobj_loader_c.h │ │ └── vox_loader.h │ ├── minshell.html │ ├── raudio.c │ ├── raygui.go │ ├── raygui.h │ ├── raylib.dll.rc │ ├── raylib.dll.rc.data │ ├── raylib.h │ ├── raylib.ico │ ├── raylib.rc │ ├── raylib.rc.data │ ├── raymath.h │ ├── rcamera.h │ ├── rcore.c │ ├── rgestures.h │ ├── rglfw.c │ ├── rlgl.h │ ├── rmodels.c │ ├── rshapes.c │ ├── rtext.c │ ├── rtextures.c │ ├── shell.html │ ├── utils.c │ └── utils.h ├── scanf.c ├── signal.c ├── sizeof.c ├── stdarg.c ├── stdbool.c ├── stddef.c ├── stdio.c ├── stdio.txt ├── stdio_fscan.txt ├── stdio_gets.c ├── stdlib.c ├── stdlib_atexit.c ├── string.c ├── struct.c ├── switch.c ├── sys_time.c ├── termios.c ├── ternary.c ├── tests.h ├── time.c ├── trigraph │ └── main.c ├── unary.c ├── union.c ├── unistd.c ├── vendor │ ├── csparce │ │ ├── README.md │ │ ├── csparse.c │ │ ├── csparse.h │ │ ├── csparse_demo1.c │ │ └── kershaw.st │ └── easymesh │ │ ├── README.md │ │ ├── anima2.gif │ │ ├── command.html │ │ ├── compilation.html │ │ ├── download.html │ │ ├── easymesh.c │ │ ├── easymesh.html │ │ ├── example1.d │ │ ├── example10.gif │ │ ├── example11.gif │ │ ├── example2.d │ │ ├── example20.gif │ │ ├── example21.gif │ │ ├── example3.d │ │ ├── example30.gif │ │ ├── example31.gif │ │ ├── example32.gif │ │ ├── features.html │ │ ├── index.html │ │ ├── input.html │ │ ├── output.html │ │ ├── output1.gif │ │ ├── output2.gif │ │ ├── references.html │ │ ├── showmesh.c │ │ └── using.html ├── wchar.c └── while.c ├── transpiler ├── binary.go ├── bind.go ├── branch.go ├── call.go ├── cast.go ├── declarations.go ├── enum.go ├── functions.go ├── goto.go ├── literals.go ├── literals_test.go ├── offset.go ├── operators.go ├── scope.go ├── switch.go ├── translation_unit.go ├── transpiler.go ├── unary.go ├── union.go ├── util.go ├── vaarg.go ├── value_to_pointer.go └── variables.go ├── types ├── binary_operator.go ├── binary_operator_test.go ├── cast.go ├── cast_test.go ├── dereference.go ├── dereference_test.go ├── resolve.go ├── resolve_test.go ├── sizeof.go └── sizeof_test.go ├── unused.go ├── util ├── diff.go ├── diff_test.go ├── errors.go ├── errors_test.go ├── goast.go ├── goast_test.go ├── regexp.go ├── util.go └── util_test.go └── version ├── make_version.go ├── version.go └── version_test.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/.github/workflows/codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/README.md -------------------------------------------------------------------------------- /ast/access_spec_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/access_spec_decl.go -------------------------------------------------------------------------------- /ast/access_spec_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/access_spec_decl_test.go -------------------------------------------------------------------------------- /ast/aligned_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/aligned_attr.go -------------------------------------------------------------------------------- /ast/aligned_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/aligned_attr_test.go -------------------------------------------------------------------------------- /ast/alloc_align_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/alloc_align_attr.go -------------------------------------------------------------------------------- /ast/alloc_align_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/alloc_align_attr_test.go -------------------------------------------------------------------------------- /ast/alloc_size_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/alloc_size_attr.go -------------------------------------------------------------------------------- /ast/alloc_size_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/alloc_size_attr_test.go -------------------------------------------------------------------------------- /ast/always_inline_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/always_inline_attr.go -------------------------------------------------------------------------------- /ast/always_inline_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/always_inline_attr_test.go -------------------------------------------------------------------------------- /ast/annotate_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/annotate_attr.go -------------------------------------------------------------------------------- /ast/annotate_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/annotate_attr_test.go -------------------------------------------------------------------------------- /ast/array_filler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/array_filler.go -------------------------------------------------------------------------------- /ast/array_filler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/array_filler_test.go -------------------------------------------------------------------------------- /ast/array_subscript_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/array_subscript_expr.go -------------------------------------------------------------------------------- /ast/array_subscript_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/array_subscript_expr_test.go -------------------------------------------------------------------------------- /ast/asm_label_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/asm_label_attr.go -------------------------------------------------------------------------------- /ast/asm_label_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/asm_label_attr_test.go -------------------------------------------------------------------------------- /ast/ast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/ast.go -------------------------------------------------------------------------------- /ast/ast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/ast_test.go -------------------------------------------------------------------------------- /ast/attributed_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/attributed_type.go -------------------------------------------------------------------------------- /ast/attributed_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/attributed_type_test.go -------------------------------------------------------------------------------- /ast/availability_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/availability_attr.go -------------------------------------------------------------------------------- /ast/availability_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/availability_attr_test.go -------------------------------------------------------------------------------- /ast/binary_conditional_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/binary_conditional_operator.go -------------------------------------------------------------------------------- /ast/binary_conditional_operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/binary_conditional_operator_test.go -------------------------------------------------------------------------------- /ast/binary_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/binary_operator.go -------------------------------------------------------------------------------- /ast/binary_operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/binary_operator_test.go -------------------------------------------------------------------------------- /ast/block_command_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/block_command_comment.go -------------------------------------------------------------------------------- /ast/block_command_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/block_command_comment_test.go -------------------------------------------------------------------------------- /ast/break_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/break_stmt.go -------------------------------------------------------------------------------- /ast/break_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/break_stmt_test.go -------------------------------------------------------------------------------- /ast/builtin_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/builtin_attr.go -------------------------------------------------------------------------------- /ast/builtin_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/builtin_attr_test.go -------------------------------------------------------------------------------- /ast/builtin_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/builtin_type.go -------------------------------------------------------------------------------- /ast/builtin_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/builtin_type_test.go -------------------------------------------------------------------------------- /ast/c11_no_return_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/c11_no_return_attr.go -------------------------------------------------------------------------------- /ast/c11_no_return_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/c11_no_return_attr_test.go -------------------------------------------------------------------------------- /ast/c4go_error_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/c4go_error_node.go -------------------------------------------------------------------------------- /ast/c4go_error_node_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/c4go_error_node_test.go -------------------------------------------------------------------------------- /ast/c_style_cast_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/c_style_cast_expr.go -------------------------------------------------------------------------------- /ast/c_style_cast_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/c_style_cast_expr_test.go -------------------------------------------------------------------------------- /ast/call_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/call_expr.go -------------------------------------------------------------------------------- /ast/call_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/call_expr_test.go -------------------------------------------------------------------------------- /ast/case_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/case_stmt.go -------------------------------------------------------------------------------- /ast/case_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/case_stmt_test.go -------------------------------------------------------------------------------- /ast/character_literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/character_literal.go -------------------------------------------------------------------------------- /ast/character_literal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/character_literal_test.go -------------------------------------------------------------------------------- /ast/compound_assign_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/compound_assign_operator.go -------------------------------------------------------------------------------- /ast/compound_assign_operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/compound_assign_operator_test.go -------------------------------------------------------------------------------- /ast/compound_literal_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/compound_literal_expr.go -------------------------------------------------------------------------------- /ast/compound_literal_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/compound_literal_expr_test.go -------------------------------------------------------------------------------- /ast/compound_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/compound_stmt.go -------------------------------------------------------------------------------- /ast/compound_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/compound_stmt_test.go -------------------------------------------------------------------------------- /ast/conditional_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/conditional_operator.go -------------------------------------------------------------------------------- /ast/conditional_operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/conditional_operator_test.go -------------------------------------------------------------------------------- /ast/const_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/const_attr.go -------------------------------------------------------------------------------- /ast/const_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/const_attr_test.go -------------------------------------------------------------------------------- /ast/constant_array_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/constant_array_type.go -------------------------------------------------------------------------------- /ast/constant_array_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/constant_array_type_test.go -------------------------------------------------------------------------------- /ast/constant_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/constant_expr.go -------------------------------------------------------------------------------- /ast/constant_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/constant_expr_test.go -------------------------------------------------------------------------------- /ast/continue_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/continue_stmt.go -------------------------------------------------------------------------------- /ast/continue_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/continue_stmt_test.go -------------------------------------------------------------------------------- /ast/cxx_construct_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_construct_expr.go -------------------------------------------------------------------------------- /ast/cxx_construct_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_construct_expr_test.go -------------------------------------------------------------------------------- /ast/cxx_constructor_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_constructor_decl.go -------------------------------------------------------------------------------- /ast/cxx_constructor_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_constructor_decl_test.go -------------------------------------------------------------------------------- /ast/cxx_member_call_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_member_call_expr.go -------------------------------------------------------------------------------- /ast/cxx_member_call_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_member_call_expr_test.go -------------------------------------------------------------------------------- /ast/cxx_method_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_method_decl.go -------------------------------------------------------------------------------- /ast/cxx_method_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_method_decl_test.go -------------------------------------------------------------------------------- /ast/cxx_record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_record.go -------------------------------------------------------------------------------- /ast/cxx_record_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_record_decl.go -------------------------------------------------------------------------------- /ast/cxx_record_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_record_decl_test.go -------------------------------------------------------------------------------- /ast/cxx_record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_record_test.go -------------------------------------------------------------------------------- /ast/cxx_this_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_this_expr.go -------------------------------------------------------------------------------- /ast/cxx_this_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/cxx_this_expr_test.go -------------------------------------------------------------------------------- /ast/decayed_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/decayed_type.go -------------------------------------------------------------------------------- /ast/decayed_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/decayed_type_test.go -------------------------------------------------------------------------------- /ast/decl_ref_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/decl_ref_expr.go -------------------------------------------------------------------------------- /ast/decl_ref_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/decl_ref_expr_test.go -------------------------------------------------------------------------------- /ast/decl_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/decl_stmt.go -------------------------------------------------------------------------------- /ast/decl_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/decl_stmt_test.go -------------------------------------------------------------------------------- /ast/default_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/default_stmt.go -------------------------------------------------------------------------------- /ast/default_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/default_stmt_test.go -------------------------------------------------------------------------------- /ast/deprecated_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/deprecated_attr.go -------------------------------------------------------------------------------- /ast/deprecated_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/deprecated_attr_test.go -------------------------------------------------------------------------------- /ast/disable_tail_calls_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/disable_tail_calls_attr.go -------------------------------------------------------------------------------- /ast/disable_tail_calls_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/disable_tail_calls_attr_test.go -------------------------------------------------------------------------------- /ast/do_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/do_stmt.go -------------------------------------------------------------------------------- /ast/do_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/do_stmt_test.go -------------------------------------------------------------------------------- /ast/elaborated_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/elaborated_type.go -------------------------------------------------------------------------------- /ast/elaborated_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/elaborated_type_test.go -------------------------------------------------------------------------------- /ast/empty_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/empty_decl.go -------------------------------------------------------------------------------- /ast/empty_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/empty_decl_test.go -------------------------------------------------------------------------------- /ast/enable_if_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enable_if_attr.go -------------------------------------------------------------------------------- /ast/enable_if_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enable_if_attr_test.go -------------------------------------------------------------------------------- /ast/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enum.go -------------------------------------------------------------------------------- /ast/enum_constant_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enum_constant_decl.go -------------------------------------------------------------------------------- /ast/enum_constant_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enum_constant_decl_test.go -------------------------------------------------------------------------------- /ast/enum_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enum_decl.go -------------------------------------------------------------------------------- /ast/enum_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enum_decl_test.go -------------------------------------------------------------------------------- /ast/enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enum_test.go -------------------------------------------------------------------------------- /ast/enum_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enum_type.go -------------------------------------------------------------------------------- /ast/enum_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/enum_type_test.go -------------------------------------------------------------------------------- /ast/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/field.go -------------------------------------------------------------------------------- /ast/field_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/field_decl.go -------------------------------------------------------------------------------- /ast/field_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/field_decl_test.go -------------------------------------------------------------------------------- /ast/field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/field_test.go -------------------------------------------------------------------------------- /ast/floating_literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/floating_literal.go -------------------------------------------------------------------------------- /ast/floating_literal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/floating_literal_test.go -------------------------------------------------------------------------------- /ast/for_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/for_stmt.go -------------------------------------------------------------------------------- /ast/for_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/for_stmt_test.go -------------------------------------------------------------------------------- /ast/format_arg_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/format_arg_attr.go -------------------------------------------------------------------------------- /ast/format_arg_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/format_arg_attr_test.go -------------------------------------------------------------------------------- /ast/format_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/format_attr.go -------------------------------------------------------------------------------- /ast/format_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/format_attr_test.go -------------------------------------------------------------------------------- /ast/full_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/full_comment.go -------------------------------------------------------------------------------- /ast/full_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/full_comment_test.go -------------------------------------------------------------------------------- /ast/function_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/function_decl.go -------------------------------------------------------------------------------- /ast/function_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/function_decl_test.go -------------------------------------------------------------------------------- /ast/function_no_proto_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/function_no_proto_type.go -------------------------------------------------------------------------------- /ast/function_no_proto_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/function_no_proto_type_test.go -------------------------------------------------------------------------------- /ast/function_proto_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/function_proto_type.go -------------------------------------------------------------------------------- /ast/function_proto_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/function_proto_type_test.go -------------------------------------------------------------------------------- /ast/gcc_asm_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/gcc_asm_stmt.go -------------------------------------------------------------------------------- /ast/gcc_asm_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/gcc_asm_stmt_test.go -------------------------------------------------------------------------------- /ast/generic_selection_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/generic_selection_expr.go -------------------------------------------------------------------------------- /ast/generic_selection_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/generic_selection_expr_test.go -------------------------------------------------------------------------------- /ast/go_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/go_stmt.go -------------------------------------------------------------------------------- /ast/go_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/go_stmt_test.go -------------------------------------------------------------------------------- /ast/html_end_tag_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/html_end_tag_comment.go -------------------------------------------------------------------------------- /ast/html_end_tag_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/html_end_tag_comment_test.go -------------------------------------------------------------------------------- /ast/html_start_tag_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/html_start_tag_comment.go -------------------------------------------------------------------------------- /ast/html_start_tag_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/html_start_tag_comment_test.go -------------------------------------------------------------------------------- /ast/if_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/if_stmt.go -------------------------------------------------------------------------------- /ast/if_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/if_stmt_test.go -------------------------------------------------------------------------------- /ast/implicit_cast_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/implicit_cast_expr.go -------------------------------------------------------------------------------- /ast/implicit_cast_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/implicit_cast_expr_test.go -------------------------------------------------------------------------------- /ast/implicit_value_init_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/implicit_value_init_expr.go -------------------------------------------------------------------------------- /ast/implicit_value_init_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/implicit_value_init_expr_test.go -------------------------------------------------------------------------------- /ast/incomplete_array_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/incomplete_array_type.go -------------------------------------------------------------------------------- /ast/incomplete_array_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/incomplete_array_type_test.go -------------------------------------------------------------------------------- /ast/indirect_field_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/indirect_field_decl.go -------------------------------------------------------------------------------- /ast/indirect_field_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/indirect_field_decl_test.go -------------------------------------------------------------------------------- /ast/init_list_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/init_list_expr.go -------------------------------------------------------------------------------- /ast/init_list_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/init_list_expr_test.go -------------------------------------------------------------------------------- /ast/inline_command_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/inline_command_comment.go -------------------------------------------------------------------------------- /ast/inline_command_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/inline_command_comment_test.go -------------------------------------------------------------------------------- /ast/integer_literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/integer_literal.go -------------------------------------------------------------------------------- /ast/integer_literal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/integer_literal_test.go -------------------------------------------------------------------------------- /ast/label_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/label_stmt.go -------------------------------------------------------------------------------- /ast/label_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/label_stmt_test.go -------------------------------------------------------------------------------- /ast/linkage_spec_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/linkage_spec_decl.go -------------------------------------------------------------------------------- /ast/linkage_spec_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/linkage_spec_decl_test.go -------------------------------------------------------------------------------- /ast/malloc_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/malloc_attr.go -------------------------------------------------------------------------------- /ast/malloc_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/malloc_attr_test.go -------------------------------------------------------------------------------- /ast/max_field_alignment_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/max_field_alignment_attr.go -------------------------------------------------------------------------------- /ast/max_field_alignment_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/max_field_alignment_attr_test.go -------------------------------------------------------------------------------- /ast/member_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/member_expr.go -------------------------------------------------------------------------------- /ast/member_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/member_expr_test.go -------------------------------------------------------------------------------- /ast/mode_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/mode_attr.go -------------------------------------------------------------------------------- /ast/mode_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/mode_attr_test.go -------------------------------------------------------------------------------- /ast/no_alias_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/no_alias_attr.go -------------------------------------------------------------------------------- /ast/no_alias_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/no_alias_attr_test.go -------------------------------------------------------------------------------- /ast/no_inline_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/no_inline_attr.go -------------------------------------------------------------------------------- /ast/no_inline_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/no_inline_attr_test.go -------------------------------------------------------------------------------- /ast/no_throw_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/no_throw_attr.go -------------------------------------------------------------------------------- /ast/no_throw_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/no_throw_attr_test.go -------------------------------------------------------------------------------- /ast/non_null_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/non_null_attr.go -------------------------------------------------------------------------------- /ast/non_null_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/non_null_attr_test.go -------------------------------------------------------------------------------- /ast/not_tail_called_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/not_tail_called_attr.go -------------------------------------------------------------------------------- /ast/not_tail_called_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/not_tail_called_attr_test.go -------------------------------------------------------------------------------- /ast/offset_of_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/offset_of_expr.go -------------------------------------------------------------------------------- /ast/offset_of_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/offset_of_expr_test.go -------------------------------------------------------------------------------- /ast/opaque_value_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/opaque_value_expr.go -------------------------------------------------------------------------------- /ast/opaque_value_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/opaque_value_expr_test.go -------------------------------------------------------------------------------- /ast/overloadable_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/overloadable_attr.go -------------------------------------------------------------------------------- /ast/overloadable_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/overloadable_attr_test.go -------------------------------------------------------------------------------- /ast/packed_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/packed_attr.go -------------------------------------------------------------------------------- /ast/packed_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/packed_attr_test.go -------------------------------------------------------------------------------- /ast/paragraph_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/paragraph_comment.go -------------------------------------------------------------------------------- /ast/paragraph_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/paragraph_comment_test.go -------------------------------------------------------------------------------- /ast/param_command_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/param_command_comment.go -------------------------------------------------------------------------------- /ast/param_command_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/param_command_comment_test.go -------------------------------------------------------------------------------- /ast/paren_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/paren_expr.go -------------------------------------------------------------------------------- /ast/paren_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/paren_expr_test.go -------------------------------------------------------------------------------- /ast/paren_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/paren_type.go -------------------------------------------------------------------------------- /ast/paren_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/paren_type_test.go -------------------------------------------------------------------------------- /ast/parm_var_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/parm_var_decl.go -------------------------------------------------------------------------------- /ast/parm_var_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/parm_var_decl_test.go -------------------------------------------------------------------------------- /ast/pointer_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/pointer_type.go -------------------------------------------------------------------------------- /ast/pointer_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/pointer_type_test.go -------------------------------------------------------------------------------- /ast/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/position.go -------------------------------------------------------------------------------- /ast/position_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/position_test.go -------------------------------------------------------------------------------- /ast/predefined_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/predefined_expr.go -------------------------------------------------------------------------------- /ast/predefined_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/predefined_expr_test.go -------------------------------------------------------------------------------- /ast/pure_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/pure_attr.go -------------------------------------------------------------------------------- /ast/pure_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/pure_attr_test.go -------------------------------------------------------------------------------- /ast/qual_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/qual_type.go -------------------------------------------------------------------------------- /ast/qual_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/qual_type_test.go -------------------------------------------------------------------------------- /ast/record.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/record.go -------------------------------------------------------------------------------- /ast/record_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/record_decl.go -------------------------------------------------------------------------------- /ast/record_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/record_decl_test.go -------------------------------------------------------------------------------- /ast/record_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/record_test.go -------------------------------------------------------------------------------- /ast/record_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/record_type.go -------------------------------------------------------------------------------- /ast/record_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/record_type_test.go -------------------------------------------------------------------------------- /ast/restrict_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/restrict_attr.go -------------------------------------------------------------------------------- /ast/restrict_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/restrict_attr_test.go -------------------------------------------------------------------------------- /ast/return_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/return_stmt.go -------------------------------------------------------------------------------- /ast/return_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/return_stmt_test.go -------------------------------------------------------------------------------- /ast/returns_twice_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/returns_twice_attr.go -------------------------------------------------------------------------------- /ast/returns_twice_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/returns_twice_attr_test.go -------------------------------------------------------------------------------- /ast/sentinel_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/sentinel_attr.go -------------------------------------------------------------------------------- /ast/sentinel_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/sentinel_attr_test.go -------------------------------------------------------------------------------- /ast/static_assert_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/static_assert_decl.go -------------------------------------------------------------------------------- /ast/static_assert_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/static_assert_decl_test.go -------------------------------------------------------------------------------- /ast/stmt_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/stmt_expr.go -------------------------------------------------------------------------------- /ast/stmt_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/stmt_expr_test.go -------------------------------------------------------------------------------- /ast/string_literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/string_literal.go -------------------------------------------------------------------------------- /ast/string_literal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/string_literal_test.go -------------------------------------------------------------------------------- /ast/switch_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/switch_stmt.go -------------------------------------------------------------------------------- /ast/switch_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/switch_stmt_test.go -------------------------------------------------------------------------------- /ast/text_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/text_comment.go -------------------------------------------------------------------------------- /ast/text_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/text_comment_test.go -------------------------------------------------------------------------------- /ast/translation_unit_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/translation_unit_decl.go -------------------------------------------------------------------------------- /ast/translation_unit_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/translation_unit_decl_test.go -------------------------------------------------------------------------------- /ast/transparent_union_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/transparent_union_attr.go -------------------------------------------------------------------------------- /ast/transparent_union_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/transparent_union_attr_test.go -------------------------------------------------------------------------------- /ast/traverse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/traverse.go -------------------------------------------------------------------------------- /ast/typedef.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/typedef.go -------------------------------------------------------------------------------- /ast/typedef_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/typedef_decl.go -------------------------------------------------------------------------------- /ast/typedef_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/typedef_decl_test.go -------------------------------------------------------------------------------- /ast/typedef_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/typedef_test.go -------------------------------------------------------------------------------- /ast/typedef_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/typedef_type.go -------------------------------------------------------------------------------- /ast/typedef_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/typedef_type_test.go -------------------------------------------------------------------------------- /ast/unary_expr_or_type_trait_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/unary_expr_or_type_trait_expr.go -------------------------------------------------------------------------------- /ast/unary_expr_or_type_trait_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/unary_expr_or_type_trait_expr_test.go -------------------------------------------------------------------------------- /ast/unary_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/unary_operator.go -------------------------------------------------------------------------------- /ast/unary_operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/unary_operator_test.go -------------------------------------------------------------------------------- /ast/unused_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/unused_attr.go -------------------------------------------------------------------------------- /ast/unused_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/unused_attr_test.go -------------------------------------------------------------------------------- /ast/used_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/used_attr.go -------------------------------------------------------------------------------- /ast/used_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/used_attr_test.go -------------------------------------------------------------------------------- /ast/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/util.go -------------------------------------------------------------------------------- /ast/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/util_test.go -------------------------------------------------------------------------------- /ast/va_arg_expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/va_arg_expr.go -------------------------------------------------------------------------------- /ast/va_arg_expr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/va_arg_expr_test.go -------------------------------------------------------------------------------- /ast/var_decl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/var_decl.go -------------------------------------------------------------------------------- /ast/var_decl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/var_decl_test.go -------------------------------------------------------------------------------- /ast/verbatim_block_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/verbatim_block_comment.go -------------------------------------------------------------------------------- /ast/verbatim_block_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/verbatim_block_comment_test.go -------------------------------------------------------------------------------- /ast/verbatim_block_line_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/verbatim_block_line_comment.go -------------------------------------------------------------------------------- /ast/verbatim_block_line_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/verbatim_block_line_comment_test.go -------------------------------------------------------------------------------- /ast/verbatim_line_comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/verbatim_line_comment.go -------------------------------------------------------------------------------- /ast/verbatim_line_comment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/verbatim_line_comment_test.go -------------------------------------------------------------------------------- /ast/visibility_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/visibility_attr.go -------------------------------------------------------------------------------- /ast/visibility_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/visibility_attr_test.go -------------------------------------------------------------------------------- /ast/warn_unused_result_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/warn_unused_result_attr.go -------------------------------------------------------------------------------- /ast/warn_unused_result_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/warn_unused_result_attr_test.go -------------------------------------------------------------------------------- /ast/weak_attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/weak_attr.go -------------------------------------------------------------------------------- /ast/weak_attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/weak_attr_test.go -------------------------------------------------------------------------------- /ast/while_stmt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/while_stmt.go -------------------------------------------------------------------------------- /ast/while_stmt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/ast/while_stmt_test.go -------------------------------------------------------------------------------- /bind_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/bind_test.go -------------------------------------------------------------------------------- /cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/cli_test.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/codecov.yml -------------------------------------------------------------------------------- /cstd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/cstd_test.go -------------------------------------------------------------------------------- /debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/debug.go -------------------------------------------------------------------------------- /examples/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/examples/ap.c -------------------------------------------------------------------------------- /examples/fib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/examples/fib.c -------------------------------------------------------------------------------- /examples/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/examples/math.c -------------------------------------------------------------------------------- /examples/prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/examples/prime.c -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/main_test.go -------------------------------------------------------------------------------- /noarch/ctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/ctype.go -------------------------------------------------------------------------------- /noarch/errno.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/errno.go -------------------------------------------------------------------------------- /noarch/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/fcntl.go -------------------------------------------------------------------------------- /noarch/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/ioctl.go -------------------------------------------------------------------------------- /noarch/locale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/locale.go -------------------------------------------------------------------------------- /noarch/noarch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/noarch.go -------------------------------------------------------------------------------- /noarch/signal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/signal.go -------------------------------------------------------------------------------- /noarch/stddef.go: -------------------------------------------------------------------------------- 1 | package noarch 2 | 3 | type PtrdiffT uint64 4 | -------------------------------------------------------------------------------- /noarch/stdio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/stdio.go -------------------------------------------------------------------------------- /noarch/stdlib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/stdlib.go -------------------------------------------------------------------------------- /noarch/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/string.go -------------------------------------------------------------------------------- /noarch/sys_resource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/sys_resource.go -------------------------------------------------------------------------------- /noarch/sys_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/sys_time.go -------------------------------------------------------------------------------- /noarch/termios.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/termios.go -------------------------------------------------------------------------------- /noarch/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/time.go -------------------------------------------------------------------------------- /noarch/unistd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/unistd.go -------------------------------------------------------------------------------- /noarch/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/util.go -------------------------------------------------------------------------------- /noarch/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/util_test.go -------------------------------------------------------------------------------- /noarch/wchar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/noarch/wchar.go -------------------------------------------------------------------------------- /other_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/other_test.go -------------------------------------------------------------------------------- /preprocessor/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/preprocessor/compiler.go -------------------------------------------------------------------------------- /preprocessor/parse_comments_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/preprocessor/parse_comments_test.go -------------------------------------------------------------------------------- /preprocessor/parse_include_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/preprocessor/parse_include_list.go -------------------------------------------------------------------------------- /preprocessor/parse_include_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/preprocessor/parse_include_list_test.go -------------------------------------------------------------------------------- /preprocessor/parse_include_preprocessor_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/preprocessor/parse_include_preprocessor_line.go -------------------------------------------------------------------------------- /preprocessor/parse_include_preprocessor_line_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/preprocessor/parse_include_preprocessor_line_test.go -------------------------------------------------------------------------------- /preprocessor/preprocessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/preprocessor/preprocessor.go -------------------------------------------------------------------------------- /preprocessor/preprocessor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/preprocessor/preprocessor_test.go -------------------------------------------------------------------------------- /program/cstd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/program/cstd.go -------------------------------------------------------------------------------- /program/definition_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/program/definition_function.go -------------------------------------------------------------------------------- /program/definition_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/program/definition_struct.go -------------------------------------------------------------------------------- /program/definition_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/program/definition_type.go -------------------------------------------------------------------------------- /program/definition_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/program/definition_variable.go -------------------------------------------------------------------------------- /program/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/program/import.go -------------------------------------------------------------------------------- /program/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/program/program.go -------------------------------------------------------------------------------- /program/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/program/struct.go -------------------------------------------------------------------------------- /program/warnings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/program/warnings.go -------------------------------------------------------------------------------- /scripts/9wm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/9wm.sh -------------------------------------------------------------------------------- /scripts/brainfuck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/brainfuck.sh -------------------------------------------------------------------------------- /scripts/cis71.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/cis71.sh -------------------------------------------------------------------------------- /scripts/code_quality.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/code_quality.sh -------------------------------------------------------------------------------- /scripts/easymesh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/easymesh.sh -------------------------------------------------------------------------------- /scripts/ed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/ed.sh -------------------------------------------------------------------------------- /scripts/gsl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/gsl.sh -------------------------------------------------------------------------------- /scripts/gtk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/gtk.sh -------------------------------------------------------------------------------- /scripts/kilo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/kilo.sh -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/minmad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/minmad.sh -------------------------------------------------------------------------------- /scripts/neateqn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/neateqn.sh -------------------------------------------------------------------------------- /scripts/neatmail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/neatmail.sh -------------------------------------------------------------------------------- /scripts/neatmkfn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/neatmkfn.sh -------------------------------------------------------------------------------- /scripts/neatpost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/neatpost.sh -------------------------------------------------------------------------------- /scripts/neatrefer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/neatrefer.sh -------------------------------------------------------------------------------- /scripts/neatroff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/neatroff.sh -------------------------------------------------------------------------------- /scripts/neatvi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/neatvi.sh -------------------------------------------------------------------------------- /scripts/nuklear.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/nuklear.sh -------------------------------------------------------------------------------- /scripts/progress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/progress.sh -------------------------------------------------------------------------------- /scripts/redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/redis.sh -------------------------------------------------------------------------------- /scripts/scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/scripts.sh -------------------------------------------------------------------------------- /scripts/scripts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/scripts.txt -------------------------------------------------------------------------------- /scripts/sqlite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/sqlite.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/tiny_web_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/tiny_web_server.sh -------------------------------------------------------------------------------- /scripts/triangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/triangle.sh -------------------------------------------------------------------------------- /scripts/vorbis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/scripts/vorbis.sh -------------------------------------------------------------------------------- /tests/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/ap.c -------------------------------------------------------------------------------- /tests/argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/argv.c -------------------------------------------------------------------------------- /tests/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/array.c -------------------------------------------------------------------------------- /tests/asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/asm.c -------------------------------------------------------------------------------- /tests/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/assert.c -------------------------------------------------------------------------------- /tests/ast/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/ast/ast.c -------------------------------------------------------------------------------- /tests/bind/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/bind/bind.c -------------------------------------------------------------------------------- /tests/bind/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/bind/test.c -------------------------------------------------------------------------------- /tests/bind/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/bind/test.h -------------------------------------------------------------------------------- /tests/c4go-TestCLI-func1-AstHelpFlag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/c4go-TestCLI-func1-AstHelpFlag -------------------------------------------------------------------------------- /tests/c4go-TestCLI-func1-AstNoFilesHelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/c4go-TestCLI-func1-AstNoFilesHelp -------------------------------------------------------------------------------- /tests/c4go-TestCLI-func1-DebugHelpFlag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/c4go-TestCLI-func1-DebugHelpFlag -------------------------------------------------------------------------------- /tests/c4go-TestCLI-func1-DebugNoFilesHelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/c4go-TestCLI-func1-DebugNoFilesHelp -------------------------------------------------------------------------------- /tests/c4go-TestCLI-func1-TranspileHelpFlag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/c4go-TestCLI-func1-TranspileHelpFlag -------------------------------------------------------------------------------- /tests/c4go-TestCLI-func1-TranspileNoFilesHelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/c4go-TestCLI-func1-TranspileNoFilesHelp -------------------------------------------------------------------------------- /tests/c4go-TestCLI-func1-UnusedHelpFlag: -------------------------------------------------------------------------------- 1 | (*bytes.Buffer)( -h print help information 2 | ) 3 | -------------------------------------------------------------------------------- /tests/c4go-TestCLI-func1-UnusedNoFilesHelp: -------------------------------------------------------------------------------- 1 | (*bytes.Buffer)( -h print help information 2 | ) 3 | -------------------------------------------------------------------------------- /tests/c4go-TestCLI-func1-Version: -------------------------------------------------------------------------------- 1 | (*bytes.Buffer)(development 2 | ) 3 | -------------------------------------------------------------------------------- /tests/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/cast.c -------------------------------------------------------------------------------- /tests/class.cpp.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/class.cpp.todo -------------------------------------------------------------------------------- /tests/code_quality/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/ap.c -------------------------------------------------------------------------------- /tests/code_quality/ap.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/ap.go.expected -------------------------------------------------------------------------------- /tests/code_quality/comments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/comments.c -------------------------------------------------------------------------------- /tests/code_quality/comments.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/comments.go.expected -------------------------------------------------------------------------------- /tests/code_quality/define.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/define.c -------------------------------------------------------------------------------- /tests/code_quality/define.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/define.go.expected -------------------------------------------------------------------------------- /tests/code_quality/for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/for.c -------------------------------------------------------------------------------- /tests/code_quality/for.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/for.go.expected -------------------------------------------------------------------------------- /tests/code_quality/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/function.c -------------------------------------------------------------------------------- /tests/code_quality/function.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/function.go.expected -------------------------------------------------------------------------------- /tests/code_quality/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/generate.sh -------------------------------------------------------------------------------- /tests/code_quality/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/if.c -------------------------------------------------------------------------------- /tests/code_quality/if.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/if.go.expected -------------------------------------------------------------------------------- /tests/code_quality/operators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/operators.c -------------------------------------------------------------------------------- /tests/code_quality/operators.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/operators.go.expected -------------------------------------------------------------------------------- /tests/code_quality/paren.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/paren.c -------------------------------------------------------------------------------- /tests/code_quality/paren.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/paren.go.expected -------------------------------------------------------------------------------- /tests/code_quality/return.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/return.c -------------------------------------------------------------------------------- /tests/code_quality/return.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/return.go.expected -------------------------------------------------------------------------------- /tests/code_quality/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/stdio.c -------------------------------------------------------------------------------- /tests/code_quality/stdio.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/stdio.go.expected -------------------------------------------------------------------------------- /tests/code_quality/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/switch.c -------------------------------------------------------------------------------- /tests/code_quality/switch.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/switch.go.expected -------------------------------------------------------------------------------- /tests/code_quality/ternary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/ternary.c -------------------------------------------------------------------------------- /tests/code_quality/ternary.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/ternary.go.expected -------------------------------------------------------------------------------- /tests/code_quality/unsafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/unsafe.c -------------------------------------------------------------------------------- /tests/code_quality/unsafe.go.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/code_quality/unsafe.go.expected -------------------------------------------------------------------------------- /tests/comment/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/comment/main.c -------------------------------------------------------------------------------- /tests/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/ctype.c -------------------------------------------------------------------------------- /tests/do.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/do.c -------------------------------------------------------------------------------- /tests/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/enum.c -------------------------------------------------------------------------------- /tests/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/errno.c -------------------------------------------------------------------------------- /tests/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/exit.c -------------------------------------------------------------------------------- /tests/exit_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/exit_status.c -------------------------------------------------------------------------------- /tests/externalHeader/include/head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/externalHeader/include/head.h -------------------------------------------------------------------------------- /tests/externalHeader/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/externalHeader/main/main.c -------------------------------------------------------------------------------- /tests/for.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/for.c -------------------------------------------------------------------------------- /tests/function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/function.c -------------------------------------------------------------------------------- /tests/getchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/getchar.c -------------------------------------------------------------------------------- /tests/goto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/goto.c -------------------------------------------------------------------------------- /tests/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/if.c -------------------------------------------------------------------------------- /tests/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/init.c -------------------------------------------------------------------------------- /tests/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/ioctl.c -------------------------------------------------------------------------------- /tests/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/locale.c -------------------------------------------------------------------------------- /tests/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/math.c -------------------------------------------------------------------------------- /tests/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/memory.c -------------------------------------------------------------------------------- /tests/multi/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/multi/err.h -------------------------------------------------------------------------------- /tests/multi/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/multi/header.h -------------------------------------------------------------------------------- /tests/multi/main1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/multi/main1.c -------------------------------------------------------------------------------- /tests/multi/main2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/multi/main2.c -------------------------------------------------------------------------------- /tests/not.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/not.c -------------------------------------------------------------------------------- /tests/operators.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/operators.c -------------------------------------------------------------------------------- /tests/raylib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/CMakeLists.txt -------------------------------------------------------------------------------- /tests/raylib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/Makefile -------------------------------------------------------------------------------- /tests/raylib/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/build.zig -------------------------------------------------------------------------------- /tests/raylib/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/config.h -------------------------------------------------------------------------------- /tests/raylib/external/cgltf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/cgltf.h -------------------------------------------------------------------------------- /tests/raylib/external/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/dirent.h -------------------------------------------------------------------------------- /tests/raylib/external/dr_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/dr_flac.h -------------------------------------------------------------------------------- /tests/raylib/external/dr_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/dr_mp3.h -------------------------------------------------------------------------------- /tests/raylib/external/dr_wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/dr_wav.h -------------------------------------------------------------------------------- /tests/raylib/external/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glad.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/.mailmap -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/GenerateMappings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/GenerateMappings.cmake -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/Info.plist.in -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/glfw3.pc.in -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/glfw3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/glfw3Config.cmake.in -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/i686-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/i686-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/modules/FindEpollShim.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/modules/FindEpollShim.cmake -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/modules/FindOSMesa.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/modules/FindOSMesa.cmake -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/x86_64-w64-mingw32-clang.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/x86_64-w64-mingw32-clang.cmake -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /tests/raylib/external/glfw/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/CONTRIBUTORS.md -------------------------------------------------------------------------------- /tests/raylib/external/glfw/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/LICENSE.md -------------------------------------------------------------------------------- /tests/raylib/external/glfw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/README.md -------------------------------------------------------------------------------- /tests/raylib/external/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/deps/getopt.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/deps/getopt.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/deps/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/deps/glad/gl.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/deps/glad/gles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/deps/glad/gles2.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/deps/glad/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/deps/glad/vulkan.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/deps/mingw/_mingw_dxhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/deps/mingw/_mingw_dxhelper.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/deps/mingw/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/deps/mingw/dinput.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/deps/mingw/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/deps/mingw/xinput.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/deps/vs2008/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/deps/vs2008/stdint.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/cocoa_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/cocoa_joystick.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/cocoa_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/cocoa_joystick.m -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/cocoa_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/cocoa_time.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/cocoa_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/cocoa_time.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/context.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/egl_context.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/glfw.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/glfw.rc.in -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/glx_context.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/init.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/input.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/internal.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/mappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/mappings.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/mappings.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/mappings.h.in -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/monitor.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/null_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/null_init.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/null_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/null_joystick.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/null_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/null_joystick.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/null_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/null_monitor.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/null_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/null_platform.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/null_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/null_window.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/osmesa_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/osmesa_context.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/platform.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/platform.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/posix_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/posix_module.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/posix_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/posix_poll.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/posix_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/posix_poll.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/posix_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/posix_thread.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/posix_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/posix_thread.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/posix_time.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/posix_time.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/vulkan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/vulkan.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_init.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_joystick.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_joystick.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_module.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_thread.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_thread.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_time.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_time.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/win32_window.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/window.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/wl_init.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/wl_window.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/x11_init.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/x11_window.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /tests/raylib/external/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /tests/raylib/external/jar_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/jar_mod.h -------------------------------------------------------------------------------- /tests/raylib/external/jar_xm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/jar_xm.h -------------------------------------------------------------------------------- /tests/raylib/external/m3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/m3d.h -------------------------------------------------------------------------------- /tests/raylib/external/miniaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/miniaudio.h -------------------------------------------------------------------------------- /tests/raylib/external/msf_gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/msf_gif.h -------------------------------------------------------------------------------- /tests/raylib/external/par_shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/par_shapes.h -------------------------------------------------------------------------------- /tests/raylib/external/qoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/qoi.h -------------------------------------------------------------------------------- /tests/raylib/external/rl_gputex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/rl_gputex.h -------------------------------------------------------------------------------- /tests/raylib/external/sdefl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/sdefl.h -------------------------------------------------------------------------------- /tests/raylib/external/sinfl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/sinfl.h -------------------------------------------------------------------------------- /tests/raylib/external/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/stb_image.h -------------------------------------------------------------------------------- /tests/raylib/external/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/stb_image_resize.h -------------------------------------------------------------------------------- /tests/raylib/external/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/stb_image_write.h -------------------------------------------------------------------------------- /tests/raylib/external/stb_perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/stb_perlin.h -------------------------------------------------------------------------------- /tests/raylib/external/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/stb_rect_pack.h -------------------------------------------------------------------------------- /tests/raylib/external/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/stb_truetype.h -------------------------------------------------------------------------------- /tests/raylib/external/stb_vorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/stb_vorbis.h -------------------------------------------------------------------------------- /tests/raylib/external/tinyobj_loader_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/tinyobj_loader_c.h -------------------------------------------------------------------------------- /tests/raylib/external/vox_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/external/vox_loader.h -------------------------------------------------------------------------------- /tests/raylib/minshell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/minshell.html -------------------------------------------------------------------------------- /tests/raylib/raudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raudio.c -------------------------------------------------------------------------------- /tests/raylib/raygui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raygui.go -------------------------------------------------------------------------------- /tests/raylib/raygui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raygui.h -------------------------------------------------------------------------------- /tests/raylib/raylib.dll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raylib.dll.rc -------------------------------------------------------------------------------- /tests/raylib/raylib.dll.rc.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raylib.dll.rc.data -------------------------------------------------------------------------------- /tests/raylib/raylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raylib.h -------------------------------------------------------------------------------- /tests/raylib/raylib.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raylib.ico -------------------------------------------------------------------------------- /tests/raylib/raylib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raylib.rc -------------------------------------------------------------------------------- /tests/raylib/raylib.rc.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raylib.rc.data -------------------------------------------------------------------------------- /tests/raylib/raymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/raymath.h -------------------------------------------------------------------------------- /tests/raylib/rcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/rcamera.h -------------------------------------------------------------------------------- /tests/raylib/rcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/rcore.c -------------------------------------------------------------------------------- /tests/raylib/rgestures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/rgestures.h -------------------------------------------------------------------------------- /tests/raylib/rglfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/rglfw.c -------------------------------------------------------------------------------- /tests/raylib/rlgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/rlgl.h -------------------------------------------------------------------------------- /tests/raylib/rmodels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/rmodels.c -------------------------------------------------------------------------------- /tests/raylib/rshapes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/rshapes.c -------------------------------------------------------------------------------- /tests/raylib/rtext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/rtext.c -------------------------------------------------------------------------------- /tests/raylib/rtextures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/rtextures.c -------------------------------------------------------------------------------- /tests/raylib/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/shell.html -------------------------------------------------------------------------------- /tests/raylib/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/utils.c -------------------------------------------------------------------------------- /tests/raylib/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/raylib/utils.h -------------------------------------------------------------------------------- /tests/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/scanf.c -------------------------------------------------------------------------------- /tests/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/signal.c -------------------------------------------------------------------------------- /tests/sizeof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/sizeof.c -------------------------------------------------------------------------------- /tests/stdarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/stdarg.c -------------------------------------------------------------------------------- /tests/stdbool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/stdbool.c -------------------------------------------------------------------------------- /tests/stddef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/stddef.c -------------------------------------------------------------------------------- /tests/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/stdio.c -------------------------------------------------------------------------------- /tests/stdio.txt: -------------------------------------------------------------------------------- 1 | Test file for testing 2 | -------------------------------------------------------------------------------- /tests/stdio_fscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/stdio_fscan.txt -------------------------------------------------------------------------------- /tests/stdio_gets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/stdio_gets.c -------------------------------------------------------------------------------- /tests/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/stdlib.c -------------------------------------------------------------------------------- /tests/stdlib_atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/stdlib_atexit.c -------------------------------------------------------------------------------- /tests/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/string.c -------------------------------------------------------------------------------- /tests/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/struct.c -------------------------------------------------------------------------------- /tests/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/switch.c -------------------------------------------------------------------------------- /tests/sys_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/sys_time.c -------------------------------------------------------------------------------- /tests/termios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/termios.c -------------------------------------------------------------------------------- /tests/ternary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/ternary.c -------------------------------------------------------------------------------- /tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/tests.h -------------------------------------------------------------------------------- /tests/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/time.c -------------------------------------------------------------------------------- /tests/trigraph/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/trigraph/main.c -------------------------------------------------------------------------------- /tests/unary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/unary.c -------------------------------------------------------------------------------- /tests/union.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/union.c -------------------------------------------------------------------------------- /tests/unistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/unistd.c -------------------------------------------------------------------------------- /tests/vendor/csparce/README.md: -------------------------------------------------------------------------------- 1 | See https://people.sc.fsu.edu/~jburkardt/c_src/csparse/ 2 | -------------------------------------------------------------------------------- /tests/vendor/csparce/csparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/csparce/csparse.c -------------------------------------------------------------------------------- /tests/vendor/csparce/csparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/csparce/csparse.h -------------------------------------------------------------------------------- /tests/vendor/csparce/csparse_demo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/csparce/csparse_demo1.c -------------------------------------------------------------------------------- /tests/vendor/csparce/kershaw.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/csparce/kershaw.st -------------------------------------------------------------------------------- /tests/vendor/easymesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/README.md -------------------------------------------------------------------------------- /tests/vendor/easymesh/anima2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/anima2.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/command.html -------------------------------------------------------------------------------- /tests/vendor/easymesh/compilation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/compilation.html -------------------------------------------------------------------------------- /tests/vendor/easymesh/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/download.html -------------------------------------------------------------------------------- /tests/vendor/easymesh/easymesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/easymesh.c -------------------------------------------------------------------------------- /tests/vendor/easymesh/easymesh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/easymesh.html -------------------------------------------------------------------------------- /tests/vendor/easymesh/example1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example1.d -------------------------------------------------------------------------------- /tests/vendor/easymesh/example10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example10.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/example11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example11.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/example2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example2.d -------------------------------------------------------------------------------- /tests/vendor/easymesh/example20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example20.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/example21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example21.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/example3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example3.d -------------------------------------------------------------------------------- /tests/vendor/easymesh/example30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example30.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/example31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example31.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/example32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/example32.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/features.html -------------------------------------------------------------------------------- /tests/vendor/easymesh/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/index.html -------------------------------------------------------------------------------- /tests/vendor/easymesh/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/input.html -------------------------------------------------------------------------------- /tests/vendor/easymesh/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/output.html -------------------------------------------------------------------------------- /tests/vendor/easymesh/output1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/output1.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/output2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/output2.gif -------------------------------------------------------------------------------- /tests/vendor/easymesh/references.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/references.html -------------------------------------------------------------------------------- /tests/vendor/easymesh/showmesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/showmesh.c -------------------------------------------------------------------------------- /tests/vendor/easymesh/using.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/vendor/easymesh/using.html -------------------------------------------------------------------------------- /tests/wchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/wchar.c -------------------------------------------------------------------------------- /tests/while.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/tests/while.c -------------------------------------------------------------------------------- /transpiler/binary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/binary.go -------------------------------------------------------------------------------- /transpiler/bind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/bind.go -------------------------------------------------------------------------------- /transpiler/branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/branch.go -------------------------------------------------------------------------------- /transpiler/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/call.go -------------------------------------------------------------------------------- /transpiler/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/cast.go -------------------------------------------------------------------------------- /transpiler/declarations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/declarations.go -------------------------------------------------------------------------------- /transpiler/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/enum.go -------------------------------------------------------------------------------- /transpiler/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/functions.go -------------------------------------------------------------------------------- /transpiler/goto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/goto.go -------------------------------------------------------------------------------- /transpiler/literals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/literals.go -------------------------------------------------------------------------------- /transpiler/literals_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/literals_test.go -------------------------------------------------------------------------------- /transpiler/offset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/offset.go -------------------------------------------------------------------------------- /transpiler/operators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/operators.go -------------------------------------------------------------------------------- /transpiler/scope.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/scope.go -------------------------------------------------------------------------------- /transpiler/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/switch.go -------------------------------------------------------------------------------- /transpiler/translation_unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/translation_unit.go -------------------------------------------------------------------------------- /transpiler/transpiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/transpiler.go -------------------------------------------------------------------------------- /transpiler/unary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/unary.go -------------------------------------------------------------------------------- /transpiler/union.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/union.go -------------------------------------------------------------------------------- /transpiler/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/util.go -------------------------------------------------------------------------------- /transpiler/vaarg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/vaarg.go -------------------------------------------------------------------------------- /transpiler/value_to_pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/value_to_pointer.go -------------------------------------------------------------------------------- /transpiler/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/transpiler/variables.go -------------------------------------------------------------------------------- /types/binary_operator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/binary_operator.go -------------------------------------------------------------------------------- /types/binary_operator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/binary_operator_test.go -------------------------------------------------------------------------------- /types/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/cast.go -------------------------------------------------------------------------------- /types/cast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/cast_test.go -------------------------------------------------------------------------------- /types/dereference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/dereference.go -------------------------------------------------------------------------------- /types/dereference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/dereference_test.go -------------------------------------------------------------------------------- /types/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/resolve.go -------------------------------------------------------------------------------- /types/resolve_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/resolve_test.go -------------------------------------------------------------------------------- /types/sizeof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/sizeof.go -------------------------------------------------------------------------------- /types/sizeof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/types/sizeof_test.go -------------------------------------------------------------------------------- /unused.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/unused.go -------------------------------------------------------------------------------- /util/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/util/diff.go -------------------------------------------------------------------------------- /util/diff_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/util/diff_test.go -------------------------------------------------------------------------------- /util/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/util/errors.go -------------------------------------------------------------------------------- /util/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/util/errors_test.go -------------------------------------------------------------------------------- /util/goast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/util/goast.go -------------------------------------------------------------------------------- /util/goast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/util/goast_test.go -------------------------------------------------------------------------------- /util/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/util/regexp.go -------------------------------------------------------------------------------- /util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/util/util.go -------------------------------------------------------------------------------- /util/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/util/util_test.go -------------------------------------------------------------------------------- /version/make_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/version/make_version.go -------------------------------------------------------------------------------- /version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/version/version.go -------------------------------------------------------------------------------- /version/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Konstantin8105/c4go/HEAD/version/version_test.go --------------------------------------------------------------------------------