File: jq_parser.h

package info (click to toggle)
jq 1.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,476 kB
  • ctags: 2,144
  • sloc: ansic: 12,692; sh: 11,961; yacc: 821; lex: 184; makefile: 147
file content (9 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
#ifndef JQ_PARSER_H
#define JQ_PARSER_H
#include "locfile.h"
#include "compile.h"

int jq_parse(struct locfile* source, block* answer);
int jq_parse_library(struct locfile* locations, block* answer);

#endif