File: lex.h

package info (click to toggle)
ht 2.1.0%2Brepack1-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 5,840 kB
  • sloc: cpp: 88,922; ansic: 12,693; sh: 4,083; lex: 226; makefile: 184; yacc: 128
file content (12 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __LEX_H__
#define __LEX_H__

void *lex_current_buffer();
int lex_current_buffer_pos();
void lex_switch_buffer(void *buffer);
void lex_delete_buffer(void *buffer);
void *lex_scan_string_buffer(const char *str);

int yylex();

#endif /* __LEX_H__ */