File: bitbuffer.h

package info (click to toggle)
libtrace3 3.0.22-0.2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,452 kB
  • sloc: ansic: 24,574; sh: 11,372; cpp: 1,811; makefile: 460; yacc: 96; lex: 50
file content (11 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#include "grammar.h"
#include <stdio.h>
int yyerror(const char *s);
element_t *append(element_t *list, element_t *item);
void print_list(element_t *list);
extern char *file;
extern FILE* yyin;
extern char* yytext;
extern int lines;
extern element_t *el_list;