Cthulhu  0.2.10
Cthulhu compiler collection
scan_callbacks_t Struct Reference

scanner function callbacks for flex and bison More...

#include <compile.h>

Data Fields

int(* init )(scan_t *extra, void *scanner)
 yylex_init_extra More...
 
int(* parse )(void *scanner, scan_t *extra)
 yyparse More...
 
void *(* scan )(const char *text, size_t size, void *scanner)
 yy_scan_bytes More...
 
void(* destroy_buffer )(void *buffer, void *scanner)
 yy_delete_buffer More...
 
void(* destroy )(void *scanner)
 yylex_destroy More...
 

Detailed Description

scanner function callbacks for flex and bison

Note
this should be created via the CT_CALLBACKS macro

Definition at line 25 of file compile.h.

Field Documentation

◆ destroy

void(* scan_callbacks_t::destroy) (void *scanner)

yylex_destroy

Definition at line 31 of file compile.h.

◆ destroy_buffer

void(* scan_callbacks_t::destroy_buffer) (void *buffer, void *scanner)

yy_delete_buffer

Definition at line 30 of file compile.h.

◆ init

int(* scan_callbacks_t::init) (scan_t *extra, void *scanner)

yylex_init_extra

Definition at line 27 of file compile.h.

◆ parse

int(* scan_callbacks_t::parse) (void *scanner, scan_t *extra)

yyparse

Definition at line 28 of file compile.h.

◆ scan

void*(* scan_callbacks_t::scan) (const char *text, size_t size, void *scanner)

yy_scan_bytes

Definition at line 29 of file compile.h.


The documentation for this struct was generated from the following file: