├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── grammar ├── grammar.y ├── parser.template.php ├── rebuild.php └── tokens.template.php ├── lib ├── CParser.php ├── Compiler.php ├── Context.php ├── Error.php ├── IR.php ├── IR │ ├── AbstractDeclarator.php │ ├── Declaration.php │ ├── Declarator.php │ ├── DirectAbstractDeclarator.php │ ├── DirectAbstractDeclarator │ │ ├── AbstractDeclarator.php │ │ ├── Array_.php │ │ ├── CompleteArray.php │ │ ├── Function_.php │ │ └── IncompleteArray.php │ ├── DirectDeclarator.php │ ├── DirectDeclarator │ │ ├── Array_.php │ │ ├── CompleteArray.php │ │ ├── Declarator.php │ │ ├── Function_.php │ │ ├── Identifier.php │ │ └── IncompleteArray.php │ ├── FieldDeclaration.php │ ├── InitDeclarator.php │ └── QualifiedPointer.php ├── Lexer.php ├── Node.php ├── Node │ ├── Asm │ │ ├── GotoLabels.php │ │ ├── Operand.php │ │ ├── Operands.php │ │ └── Registers.php │ ├── Decl.php │ ├── Decl │ │ ├── NamedDecl.php │ │ ├── NamedDecl │ │ │ ├── TypeDecl.php │ │ │ ├── TypeDecl │ │ │ │ ├── TagDecl.php │ │ │ │ ├── TagDecl │ │ │ │ │ ├── EnumDecl.php │ │ │ │ │ └── RecordDecl.php │ │ │ │ ├── TypedefNameDecl.php │ │ │ │ └── TypedefNameDecl │ │ │ │ │ └── TypedefDecl.php │ │ │ ├── ValueDecl.php │ │ │ └── ValueDecl │ │ │ │ ├── DeclaratorDecl.php │ │ │ │ ├── DeclaratorDecl │ │ │ │ ├── FieldDecl.php │ │ │ │ ├── FunctionDecl.php │ │ │ │ ├── VarDecl.php │ │ │ │ └── VarDecl │ │ │ │ │ ├── ExternVarDecl.php │ │ │ │ │ └── ParamVarDecl.php │ │ │ │ └── EnumConstantDecl.php │ │ ├── Specifiers │ │ │ ├── Attribute.php │ │ │ └── AttributeList.php │ │ ├── ValueDecl.php │ │ └── ValueDecl │ │ │ └── BindingDecl.php │ ├── DeclContext.php │ ├── DeclGroup.php │ ├── Stmt.php │ ├── Stmt │ │ ├── AsmStmt.php │ │ ├── BreakStmt.php │ │ ├── CompoundStmt.php │ │ ├── ContinueStmt.php │ │ ├── DeclStmt.php │ │ ├── DoLoopStmt.php │ │ ├── EmptyStmt.php │ │ ├── GotoStmt.php │ │ ├── IfStmt.php │ │ ├── Label.php │ │ ├── Label │ │ │ ├── CaseLabel.php │ │ │ ├── DefaultLabel.php │ │ │ └── IdentifiedLabel.php │ │ ├── LoopStmt.php │ │ ├── ReturnStmt.php │ │ ├── SwitchStmt.php │ │ ├── ValueStmt.php │ │ └── ValueStmt │ │ │ ├── Expr.php │ │ │ └── Expr │ │ │ ├── AbstractConditionalOperator.php │ │ │ ├── AbstractConditionalOperator │ │ │ └── ConditionalOperator.php │ │ │ ├── BinaryOperator.php │ │ │ ├── CallExpr.php │ │ │ ├── CastExpr.php │ │ │ ├── DeclRefExpr.php │ │ │ ├── DimFetchExpr.php │ │ │ ├── FloatLiteral.php │ │ │ ├── FuncName.php │ │ │ ├── Initializer │ │ │ ├── InitializerDimension.php │ │ │ ├── InitializerElement.php │ │ │ ├── InitializerStructRef.php │ │ │ └── NamedInitializer.php │ │ │ ├── InitializerExpr.php │ │ │ ├── IntegerLiteral.php │ │ │ ├── StringLiteral.php │ │ │ ├── StructDerefExpr.php │ │ │ ├── StructRefExpr.php │ │ │ ├── TypeRefExpr.php │ │ │ └── UnaryOperator.php │ ├── TranslationUnitDecl.php │ ├── Type.php │ └── Type │ │ ├── ArbitraryAttributedType.php │ │ ├── ArrayType.php │ │ ├── ArrayType │ │ ├── CompleteArrayType.php │ │ ├── ConstantArrayType.php │ │ ├── IncompleteArrayType.php │ │ └── VariableArrayType.php │ │ ├── AttributedType.php │ │ ├── BuiltinType.php │ │ ├── DecltypeType.php │ │ ├── ExplicitAttributedType.php │ │ ├── FunctionType.php │ │ ├── FunctionType │ │ └── FunctionProtoType.php │ │ ├── ParenType.php │ │ ├── PointerType.php │ │ ├── TagType.php │ │ ├── TagType │ │ ├── EnumType.php │ │ └── RecordType.php │ │ ├── TypeWithKeyword.php │ │ ├── TypeWithKeyword │ │ └── ElaboratedType.php │ │ └── TypedefType.php ├── NodeAbstract.php ├── Parser.php ├── ParserAbstract.php ├── PreProcessor.php ├── PreProcessor │ ├── Parser.php │ ├── Token.php │ └── Tokenizer.php ├── Printer.php ├── Printer │ ├── C.php │ └── Dumper.php ├── Scope.php └── Tokens.php ├── phpunit.xml.dist └── test ├── cases ├── c │ ├── basic_math.phpt │ ├── char_literals.phpt │ ├── elifchain.phpt │ ├── escape_sequences.phpt │ ├── expr1.phpt │ ├── expr2.phpt │ ├── function_pointers.phpt │ ├── functions.phpt │ ├── issue_2.phpt │ ├── pragma_once.phpt │ ├── preprocessor_concat.phpt │ ├── preprocessor_recursion.phpt │ ├── preprocessor_ternary.phpt │ ├── preprocessor_x_macro.phpt │ ├── struct.phpt │ ├── struct_pointers.phpt │ ├── typedef.phpt │ └── vars.phpt └── dump │ ├── bare_function_typedef.phpt │ ├── includes_and_typedefs.phpt │ └── struct.phpt ├── generated ├── c │ ├── basic_mathTest.c │ ├── basic_mathTest.php │ ├── elifchainTest.c │ ├── elifchainTest.php │ ├── escape_sequencesTest.c │ ├── escape_sequencesTest.php │ ├── expr1Test.c │ ├── expr1Test.php │ ├── function_pointersTest.c │ ├── function_pointersTest.php │ ├── functionsTest.c │ ├── functionsTest.php │ ├── issue_2Test.c │ ├── issue_2Test.php │ ├── pragma_onceTest.c │ ├── pragma_onceTest.php │ ├── preprocessor_concatTest.c │ ├── preprocessor_concatTest.php │ ├── preprocessor_ternaryTest.c │ ├── preprocessor_ternaryTest.php │ ├── structTest.c │ ├── structTest.php │ ├── struct_pointersTest.c │ ├── struct_pointersTest.php │ ├── typedefTest.c │ ├── typedefTest.php │ ├── varsTest.c │ └── varsTest.php └── dump │ ├── bare_function_typedefTest.c │ ├── bare_function_typedefTest.php │ ├── includes_and_typedefsTest.c │ ├── includes_and_typedefsTest.php │ ├── structTest.c │ └── structTest.php ├── include ├── includes_and_typedefs.h └── pragma_once.h └── rebuild.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/composer.lock -------------------------------------------------------------------------------- /grammar/grammar.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/grammar/grammar.y -------------------------------------------------------------------------------- /grammar/parser.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/grammar/parser.template.php -------------------------------------------------------------------------------- /grammar/rebuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/grammar/rebuild.php -------------------------------------------------------------------------------- /grammar/tokens.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/grammar/tokens.template.php -------------------------------------------------------------------------------- /lib/CParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/CParser.php -------------------------------------------------------------------------------- /lib/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Compiler.php -------------------------------------------------------------------------------- /lib/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Context.php -------------------------------------------------------------------------------- /lib/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Error.php -------------------------------------------------------------------------------- /lib/IR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR.php -------------------------------------------------------------------------------- /lib/IR/AbstractDeclarator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/AbstractDeclarator.php -------------------------------------------------------------------------------- /lib/IR/Declaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/Declaration.php -------------------------------------------------------------------------------- /lib/IR/Declarator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/Declarator.php -------------------------------------------------------------------------------- /lib/IR/DirectAbstractDeclarator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectAbstractDeclarator.php -------------------------------------------------------------------------------- /lib/IR/DirectAbstractDeclarator/AbstractDeclarator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectAbstractDeclarator/AbstractDeclarator.php -------------------------------------------------------------------------------- /lib/IR/DirectAbstractDeclarator/Array_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectAbstractDeclarator/Array_.php -------------------------------------------------------------------------------- /lib/IR/DirectAbstractDeclarator/CompleteArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectAbstractDeclarator/CompleteArray.php -------------------------------------------------------------------------------- /lib/IR/DirectAbstractDeclarator/Function_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectAbstractDeclarator/Function_.php -------------------------------------------------------------------------------- /lib/IR/DirectAbstractDeclarator/IncompleteArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectAbstractDeclarator/IncompleteArray.php -------------------------------------------------------------------------------- /lib/IR/DirectDeclarator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectDeclarator.php -------------------------------------------------------------------------------- /lib/IR/DirectDeclarator/Array_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectDeclarator/Array_.php -------------------------------------------------------------------------------- /lib/IR/DirectDeclarator/CompleteArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectDeclarator/CompleteArray.php -------------------------------------------------------------------------------- /lib/IR/DirectDeclarator/Declarator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectDeclarator/Declarator.php -------------------------------------------------------------------------------- /lib/IR/DirectDeclarator/Function_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectDeclarator/Function_.php -------------------------------------------------------------------------------- /lib/IR/DirectDeclarator/Identifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectDeclarator/Identifier.php -------------------------------------------------------------------------------- /lib/IR/DirectDeclarator/IncompleteArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/DirectDeclarator/IncompleteArray.php -------------------------------------------------------------------------------- /lib/IR/FieldDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/FieldDeclaration.php -------------------------------------------------------------------------------- /lib/IR/InitDeclarator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/InitDeclarator.php -------------------------------------------------------------------------------- /lib/IR/QualifiedPointer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/IR/QualifiedPointer.php -------------------------------------------------------------------------------- /lib/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Lexer.php -------------------------------------------------------------------------------- /lib/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node.php -------------------------------------------------------------------------------- /lib/Node/Asm/GotoLabels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Asm/GotoLabels.php -------------------------------------------------------------------------------- /lib/Node/Asm/Operand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Asm/Operand.php -------------------------------------------------------------------------------- /lib/Node/Asm/Operands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Asm/Operands.php -------------------------------------------------------------------------------- /lib/Node/Asm/Registers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Asm/Registers.php -------------------------------------------------------------------------------- /lib/Node/Decl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/TypeDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/TypeDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/TypeDecl/TagDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/TypeDecl/TagDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/TypeDecl/TagDecl/EnumDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/TypeDecl/TagDecl/EnumDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/TypeDecl/TagDecl/RecordDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/TypeDecl/TagDecl/RecordDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/TypeDecl/TypedefNameDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/TypeDecl/TypedefNameDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/TypeDecl/TypedefNameDecl/TypedefDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/TypeDecl/TypedefNameDecl/TypedefDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/ValueDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/ValueDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/FieldDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/FieldDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/FunctionDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/FunctionDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/VarDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/VarDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/VarDecl/ExternVarDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/VarDecl/ExternVarDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/VarDecl/ParamVarDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/ValueDecl/DeclaratorDecl/VarDecl/ParamVarDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/NamedDecl/ValueDecl/EnumConstantDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/NamedDecl/ValueDecl/EnumConstantDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/Specifiers/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/Specifiers/Attribute.php -------------------------------------------------------------------------------- /lib/Node/Decl/Specifiers/AttributeList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/Specifiers/AttributeList.php -------------------------------------------------------------------------------- /lib/Node/Decl/ValueDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/ValueDecl.php -------------------------------------------------------------------------------- /lib/Node/Decl/ValueDecl/BindingDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Decl/ValueDecl/BindingDecl.php -------------------------------------------------------------------------------- /lib/Node/DeclContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/DeclContext.php -------------------------------------------------------------------------------- /lib/Node/DeclGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/DeclGroup.php -------------------------------------------------------------------------------- /lib/Node/Stmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/AsmStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/AsmStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/BreakStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/BreakStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/CompoundStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/CompoundStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ContinueStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ContinueStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/DeclStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/DeclStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/DoLoopStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/DoLoopStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/EmptyStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/EmptyStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/GotoStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/GotoStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/IfStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/IfStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/Label.php -------------------------------------------------------------------------------- /lib/Node/Stmt/Label/CaseLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/Label/CaseLabel.php -------------------------------------------------------------------------------- /lib/Node/Stmt/Label/DefaultLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/Label/DefaultLabel.php -------------------------------------------------------------------------------- /lib/Node/Stmt/Label/IdentifiedLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/Label/IdentifiedLabel.php -------------------------------------------------------------------------------- /lib/Node/Stmt/LoopStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/LoopStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ReturnStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ReturnStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/SwitchStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/SwitchStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/AbstractConditionalOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/AbstractConditionalOperator.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/AbstractConditionalOperator/ConditionalOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/AbstractConditionalOperator/ConditionalOperator.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/BinaryOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/BinaryOperator.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/CallExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/CallExpr.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/CastExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/CastExpr.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/DeclRefExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/DeclRefExpr.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/DimFetchExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/DimFetchExpr.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/FloatLiteral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/FloatLiteral.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/FuncName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/FuncName.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/Initializer/InitializerDimension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/Initializer/InitializerDimension.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/Initializer/InitializerElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/Initializer/InitializerElement.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/Initializer/InitializerStructRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/Initializer/InitializerStructRef.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/Initializer/NamedInitializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/Initializer/NamedInitializer.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/InitializerExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/InitializerExpr.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/IntegerLiteral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/IntegerLiteral.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/StringLiteral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/StringLiteral.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/StructDerefExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/StructDerefExpr.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/StructRefExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/StructRefExpr.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/TypeRefExpr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/TypeRefExpr.php -------------------------------------------------------------------------------- /lib/Node/Stmt/ValueStmt/Expr/UnaryOperator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Stmt/ValueStmt/Expr/UnaryOperator.php -------------------------------------------------------------------------------- /lib/Node/TranslationUnitDecl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/TranslationUnitDecl.php -------------------------------------------------------------------------------- /lib/Node/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type.php -------------------------------------------------------------------------------- /lib/Node/Type/ArbitraryAttributedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/ArbitraryAttributedType.php -------------------------------------------------------------------------------- /lib/Node/Type/ArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/ArrayType.php -------------------------------------------------------------------------------- /lib/Node/Type/ArrayType/CompleteArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/ArrayType/CompleteArrayType.php -------------------------------------------------------------------------------- /lib/Node/Type/ArrayType/ConstantArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/ArrayType/ConstantArrayType.php -------------------------------------------------------------------------------- /lib/Node/Type/ArrayType/IncompleteArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/ArrayType/IncompleteArrayType.php -------------------------------------------------------------------------------- /lib/Node/Type/ArrayType/VariableArrayType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/ArrayType/VariableArrayType.php -------------------------------------------------------------------------------- /lib/Node/Type/AttributedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/AttributedType.php -------------------------------------------------------------------------------- /lib/Node/Type/BuiltinType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/BuiltinType.php -------------------------------------------------------------------------------- /lib/Node/Type/DecltypeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/DecltypeType.php -------------------------------------------------------------------------------- /lib/Node/Type/ExplicitAttributedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/ExplicitAttributedType.php -------------------------------------------------------------------------------- /lib/Node/Type/FunctionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/FunctionType.php -------------------------------------------------------------------------------- /lib/Node/Type/FunctionType/FunctionProtoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/FunctionType/FunctionProtoType.php -------------------------------------------------------------------------------- /lib/Node/Type/ParenType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/ParenType.php -------------------------------------------------------------------------------- /lib/Node/Type/PointerType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/PointerType.php -------------------------------------------------------------------------------- /lib/Node/Type/TagType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/TagType.php -------------------------------------------------------------------------------- /lib/Node/Type/TagType/EnumType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/TagType/EnumType.php -------------------------------------------------------------------------------- /lib/Node/Type/TagType/RecordType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/TagType/RecordType.php -------------------------------------------------------------------------------- /lib/Node/Type/TypeWithKeyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/TypeWithKeyword.php -------------------------------------------------------------------------------- /lib/Node/Type/TypeWithKeyword/ElaboratedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/TypeWithKeyword/ElaboratedType.php -------------------------------------------------------------------------------- /lib/Node/Type/TypedefType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Node/Type/TypedefType.php -------------------------------------------------------------------------------- /lib/NodeAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/NodeAbstract.php -------------------------------------------------------------------------------- /lib/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Parser.php -------------------------------------------------------------------------------- /lib/ParserAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/ParserAbstract.php -------------------------------------------------------------------------------- /lib/PreProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/PreProcessor.php -------------------------------------------------------------------------------- /lib/PreProcessor/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/PreProcessor/Parser.php -------------------------------------------------------------------------------- /lib/PreProcessor/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/PreProcessor/Token.php -------------------------------------------------------------------------------- /lib/PreProcessor/Tokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/PreProcessor/Tokenizer.php -------------------------------------------------------------------------------- /lib/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Printer.php -------------------------------------------------------------------------------- /lib/Printer/C.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Printer/C.php -------------------------------------------------------------------------------- /lib/Printer/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Printer/Dumper.php -------------------------------------------------------------------------------- /lib/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Scope.php -------------------------------------------------------------------------------- /lib/Tokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/lib/Tokens.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /test/cases/c/basic_math.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/basic_math.phpt -------------------------------------------------------------------------------- /test/cases/c/char_literals.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/char_literals.phpt -------------------------------------------------------------------------------- /test/cases/c/elifchain.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/elifchain.phpt -------------------------------------------------------------------------------- /test/cases/c/escape_sequences.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/escape_sequences.phpt -------------------------------------------------------------------------------- /test/cases/c/expr1.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/expr1.phpt -------------------------------------------------------------------------------- /test/cases/c/expr2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/expr2.phpt -------------------------------------------------------------------------------- /test/cases/c/function_pointers.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/function_pointers.phpt -------------------------------------------------------------------------------- /test/cases/c/functions.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/functions.phpt -------------------------------------------------------------------------------- /test/cases/c/issue_2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/issue_2.phpt -------------------------------------------------------------------------------- /test/cases/c/pragma_once.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/pragma_once.phpt -------------------------------------------------------------------------------- /test/cases/c/preprocessor_concat.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/preprocessor_concat.phpt -------------------------------------------------------------------------------- /test/cases/c/preprocessor_recursion.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/preprocessor_recursion.phpt -------------------------------------------------------------------------------- /test/cases/c/preprocessor_ternary.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/preprocessor_ternary.phpt -------------------------------------------------------------------------------- /test/cases/c/preprocessor_x_macro.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/preprocessor_x_macro.phpt -------------------------------------------------------------------------------- /test/cases/c/struct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/struct.phpt -------------------------------------------------------------------------------- /test/cases/c/struct_pointers.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/struct_pointers.phpt -------------------------------------------------------------------------------- /test/cases/c/typedef.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/typedef.phpt -------------------------------------------------------------------------------- /test/cases/c/vars.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/c/vars.phpt -------------------------------------------------------------------------------- /test/cases/dump/bare_function_typedef.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/dump/bare_function_typedef.phpt -------------------------------------------------------------------------------- /test/cases/dump/includes_and_typedefs.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/dump/includes_and_typedefs.phpt -------------------------------------------------------------------------------- /test/cases/dump/struct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/cases/dump/struct.phpt -------------------------------------------------------------------------------- /test/generated/c/basic_mathTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/basic_mathTest.c -------------------------------------------------------------------------------- /test/generated/c/basic_mathTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/basic_mathTest.php -------------------------------------------------------------------------------- /test/generated/c/elifchainTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/elifchainTest.c -------------------------------------------------------------------------------- /test/generated/c/elifchainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/elifchainTest.php -------------------------------------------------------------------------------- /test/generated/c/escape_sequencesTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/escape_sequencesTest.c -------------------------------------------------------------------------------- /test/generated/c/escape_sequencesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/escape_sequencesTest.php -------------------------------------------------------------------------------- /test/generated/c/expr1Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/expr1Test.c -------------------------------------------------------------------------------- /test/generated/c/expr1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/expr1Test.php -------------------------------------------------------------------------------- /test/generated/c/function_pointersTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/function_pointersTest.c -------------------------------------------------------------------------------- /test/generated/c/function_pointersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/function_pointersTest.php -------------------------------------------------------------------------------- /test/generated/c/functionsTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/functionsTest.c -------------------------------------------------------------------------------- /test/generated/c/functionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/functionsTest.php -------------------------------------------------------------------------------- /test/generated/c/issue_2Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/issue_2Test.c -------------------------------------------------------------------------------- /test/generated/c/issue_2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/issue_2Test.php -------------------------------------------------------------------------------- /test/generated/c/pragma_onceTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/pragma_onceTest.c -------------------------------------------------------------------------------- /test/generated/c/pragma_onceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/pragma_onceTest.php -------------------------------------------------------------------------------- /test/generated/c/preprocessor_concatTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/preprocessor_concatTest.c -------------------------------------------------------------------------------- /test/generated/c/preprocessor_concatTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/preprocessor_concatTest.php -------------------------------------------------------------------------------- /test/generated/c/preprocessor_ternaryTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/preprocessor_ternaryTest.c -------------------------------------------------------------------------------- /test/generated/c/preprocessor_ternaryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/preprocessor_ternaryTest.php -------------------------------------------------------------------------------- /test/generated/c/structTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/structTest.c -------------------------------------------------------------------------------- /test/generated/c/structTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/structTest.php -------------------------------------------------------------------------------- /test/generated/c/struct_pointersTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/struct_pointersTest.c -------------------------------------------------------------------------------- /test/generated/c/struct_pointersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/struct_pointersTest.php -------------------------------------------------------------------------------- /test/generated/c/typedefTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/typedefTest.c -------------------------------------------------------------------------------- /test/generated/c/typedefTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/typedefTest.php -------------------------------------------------------------------------------- /test/generated/c/varsTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/varsTest.c -------------------------------------------------------------------------------- /test/generated/c/varsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/c/varsTest.php -------------------------------------------------------------------------------- /test/generated/dump/bare_function_typedefTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/dump/bare_function_typedefTest.c -------------------------------------------------------------------------------- /test/generated/dump/bare_function_typedefTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/dump/bare_function_typedefTest.php -------------------------------------------------------------------------------- /test/generated/dump/includes_and_typedefsTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/dump/includes_and_typedefsTest.c -------------------------------------------------------------------------------- /test/generated/dump/includes_and_typedefsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/dump/includes_and_typedefsTest.php -------------------------------------------------------------------------------- /test/generated/dump/structTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/dump/structTest.c -------------------------------------------------------------------------------- /test/generated/dump/structTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/generated/dump/structTest.php -------------------------------------------------------------------------------- /test/include/includes_and_typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/include/includes_and_typedefs.h -------------------------------------------------------------------------------- /test/include/pragma_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/include/pragma_once.h -------------------------------------------------------------------------------- /test/rebuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/php-c-parser/HEAD/test/rebuild.php --------------------------------------------------------------------------------