Files
rocm-systems/source/lib/rocprofiler/counters/parser/reader.hpp
T

13 lines
285 B
C++
Raw Normal View History

2023-10-16 13:41:40 -07:00
#pragma ONCE
#include "parser.h"
// Bison functions for parsers
typedef struct yy_buffer_state* YY_BUFFER_STATE;
extern int
yyparse(rocprofiler::counters::RawAST** result);
extern YY_BUFFER_STATE
yy_scan_string(const char* str);
extern void
yy_delete_buffer(YY_BUFFER_STATE buffer);