blob: 6d103452930282420eb67a2e0446604fdf104bd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CONTROL_H
#define CONTROL_H
#include "stralloc.h"
int control_init(void);
int control_readline(stralloc *, char *);
int control_rldef(stralloc *, char *, int, char *);
int control_readint(unsigned long *, char *);
int control_readfile(stralloc *, char *, int);
#endif
|