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
|
/*
* readflo.c -- Filename translation in ?lo-files
*
* readflo.c is a part of binkd project
*
* Copyright (C) 1997 Dima Maloff, 5047/13
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. See COPYING.
*/
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "Config.h"
#include "sys.h"
#include "tools.h"
#include "readflo.h"
/*
* Reads a line from a flo to dst[MAXPATHLEN], sets action
* 1 -- ok
* 0 -- EOF
*/
int read_flo_line (char *dst, int *action, FILE *flo)
{
char buf[MAXPATHLEN + 1];
int i;
while (1)
{
if (!fgets (buf, MAXPATHLEN, flo))
return 0;
for (i = strlen (buf) - 1; i >= 0 && isspace (buf[i]); --i)
buf[i] = 0;
switch (*buf)
{
case 0:
case '~':
continue;
case '^':
*action = 'd';
strcpy (dst, buf + 1);
break;
case '#':
*action = 't';
strcpy (dst, buf + 1);
break;
default:
*action = 0;
strcpy (dst, buf);
break;
}
break;
}
return 1;
}
/*
* Translates a flo line using rf_rules.
* Returns 0 if no rf_rules defined, otherwise returned value
* should be free()'d
*/
char *trans_flo_line (char *s, RF_RULE *rf_rules)
{
RF_RULE *curr;
char buf[MAXPATHLEN + 1];
if (rf_rules)
{
char *w;
strnzcpy (buf, s, MAXPATHLEN);
for (curr = rf_rules; curr; curr = curr->next)
{
w = ed (buf, curr->from, curr->to, NULL);
strnzcpy (buf, w, MAXPATHLEN);
free (w);
}
return xstrdup (buf);
}
else
return 0;
}
|