-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmodfile_name.c
75 lines (68 loc) · 2.33 KB
/
modfile_name.c
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
/*
* Copyright (C) 2000-2005 Erik Edelmann <Erik.Edelmann@iki.fi>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General Public
* License version 2 as published by the Free Software
* Foundation.
*
* This program is distributed in the hope that it will be
* useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the Free
* Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA
*/
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include "global.h"
#include "errormesg.h"
#include "xmalloc.h"
char *modfile_name (const char *modulename, const char *filename)
/*
* Create a "modfile" name out of 'modulename' and 'filename' using format given
* by 'options.modfile_fmt'.
*/
{
char *modfile;
const char *fmt = options.modfile_fmt;
int mi = 0, j, i;
modfile = (char *)xmalloc (sizeof(char)*MODFILE_NAME_LEN);
for (i = 0; fmt[i]; i++) {
if (fmt[i] == '%') {
i++;
switch (fmt[i]) {
case 'f':
for (j = 0; filename[j]; j++)
modfile[mi++] = filename[j];
/* Skip the file name extension */
for (mi--; modfile[mi] != '.'; mi--);
break;
case 'm':
for (j = 0; modulename[j]; j++)
modfile[mi++] = tolower (modulename[j]);
break;
case 'M':
for (j = 0; modulename[j]; j++)
modfile[mi++] = toupper (modulename[j]);
break;
case '%':
modfile[mi++] = '%';
break;
default:
warning ("Unknown modifier '%%%c' in modfile format '%s'",
fmt[i], fmt);
break;
}
} else {
modfile[mi++] = fmt[i];
}
}
modfile[mi] = '\0';
return modfile;
}