Modified the command line encoder and decoder to accept input from stdin and
[schroedinger-tools.git] / src / parse.h
blob4edc3878d3bdd4cafb39b59c9a1ef081adb918c2
1 #ifndef __PARSE_H__
2 #define __PARSE_H__
4 #include <stdio.h>
6 enum {
7 PARSE_EOF=-2,
8 PARSE_ERROR=-1,
9 PARSE_OK=0
12 int parse_packet(FILE *, void**, int *);
14 #endif