repo.or.cz
/
schroedinger-tools.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Modified the command line encoder and decoder to accept input from stdin and
[schroedinger-tools.git]
/
src
/
parse.h
blob
4edc3878d3bdd4cafb39b59c9a1ef081adb918c2
1
#ifndef __PARSE_H__
2
#define __PARSE_H__
3
4
#include <stdio.h>
5
6
enum
{
7
PARSE_EOF
=-
2
,
8
PARSE_ERROR
=-
1
,
9
PARSE_OK
=
0
10
};
11
12
int
parse_packet
(
FILE
*,
void
**,
int
*);
13
14
#endif
15