summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/fonts/malayalam/preproc/readfile.h
blob: 605d6fa3c9a485b74fcb9ade3967866131167249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef READFILE_HEADER_READ
#define READFILE_HEADER_READ

#define TRUE (1==1)
#define FALSE (1==0)
#define BUFSIZE 1024
#define COMMANDCHAR '@'
#define COMMENTCHAR '%'

typedef struct string_list
{   char                *s;
    struct string_list  *n;
} string_list;

/* public operations */

string_list *get_line(FILE *f);
char *get_command(FILE *f, char *command, string_list **rest);

#endif
/* eof */