1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
/*
* Built-in config files
* Copyright
* (C) 2006 Joseph H. Allen
*
* This file is part of JOE (Joe's Own Editor)
*/
#include "config.h"
__RCSID("$MirOS: contrib/code/jupp/builtin.c,v 1.11 2020/03/27 06:08:11 tg Exp $");
#include <stdlib.h>
#include <string.h>
#include "types.h"
#include "builtin.h"
#include "utils.h"
#define zcmp(a,b) strcmp((const char *)(a), (const char *)(b))
JFILE *
jfopen(const unsigned char *name, const char *mode)
{
if (name[0] == '*') {
int x;
char *xname, *cp;
xname = strdup((const char *)name + 1);
cp = xname;
while ((x = *cp++)) {
if (x >= 'A' && x <= 'Z')
cp[-1] = x - 'A' + 'a';
}
for (x = 0; builtins[x]; x += 2) {
if (!zcmp(builtins[x], xname)) {
JFILE *j = malloc(sizeof(JFILE));
j->f = 0;
j->p = builtins[x + 1];
free(xname);
return j;
}
}
free(xname);
return 0;
} else {
FILE *f = fopen((const char *)name, (const char *)mode);
if (f) {
JFILE *j = malloc(sizeof(JFILE));
j->f = f;
j->p = 0;
return j;
} else {
return 0;
}
}
}
int jfclose(JFILE *f)
{
int rtn = 0;
if (f->f)
rtn = fclose(f->f);
free(f);
return rtn;
}
/*XXX fails to honour len (= 1024, in practice) for builtins */
unsigned char *
jfgets(unsigned char *buf, int len, JFILE *f)
{
if (f->f)
return (unsigned char *)fgets((char *)buf, len, f->f);
else {
if (f->p[0]) {
int x;
for (x = 0; f->p[x] && f->p[x] != '\n'; ++x)
buf[x] = f->p[x];
if (f->p[x] == '\n') {
buf[x++] = '\n';
}
buf[x] = 0;
f->p += x;
return buf;
} else
return 0;
}
}
|