1 /* $MirOS: contrib/code/jupp/builtin.h,v 1.2 2010/04/08 15:31:01 tg Exp $ */
3 /* Support for built-in config files */
6 FILE *f; /* Regular file, or NULL for built-in */
7 unsigned char *p; /* Built-in file pointer */
10 JFILE *jfopen(unsigned char *name, const char *mode);
11 unsigned char *jfgets(unsigned char *buf,int len,JFILE *f);
12 int jfclose(JFILE *f);
14 extern unsigned char *builtins[];