File: gcode_lex.h

package info (click to toggle)
camv-rnd 1.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,824 kB
  • sloc: ansic: 35,928; sh: 686; makefile: 476; yacc: 110; awk: 3
file content (10 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#ifndef GCODE_LEX_H
#define GCODE_LEX_H

#include "gcode_vm.h"
#include "gcode.tab.h"

int gcodelex(YYSTYPE *dummy, gcode_prg_t *ctx);
int gcodeerror(gcode_prg_t *ctx, const char *msg);

#endif