File: bitbuffer.h

package info (click to toggle)
libtrace3 3.0.7-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,676 kB
  • ctags: 3,140
  • sloc: ansic: 20,551; sh: 10,125; cpp: 1,384; makefile: 415; yacc: 96; lex: 50
file content (11 lines) | stat: -rw-r--r-- 254 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(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;