File: unsharp.c

package info (click to toggle)
9base 1%3A6-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 5,148 kB
  • ctags: 6,505
  • sloc: ansic: 61,051; yacc: 1,991; asm: 1,621; cs: 1,150; perl: 965; makefile: 592; sh: 12; sed: 4
file content (44 lines) | stat: -rw-r--r-- 927 bytes parent folder | download | duplicates (10)
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
#include <u.h>
#include <libc.h>

/*
 * I don't want too many of these,
 * but the ones we have are just too useful. 
 */
static struct {
	char *old;
	char *new;
} replace[] = {
	"#9", nil,	/* must be first */
	"#d", "/dev/fd",
};

char*
unsharp(char *old)
{
	char *new;
	int i, olen, nlen, len;

	if(replace[0].new == nil)
		replace[0].new = get9root();

	for(i=0; i<nelem(replace); i++){
		if(!replace[i].new)
			continue;
		olen = strlen(replace[i].old);
		if(strncmp(old, replace[i].old, olen) != 0
		|| (old[olen] != '\0' && old[olen] != '/'))
			continue;
		nlen = strlen(replace[i].new);
		len = strlen(old)+nlen-olen;
		new = malloc(len+1);
		if(new == nil)
			/* Most callers won't check the return value... */
			sysfatal("out of memory translating %s to %s%s", old, replace[i].new, old+olen);
		strcpy(new, replace[i].new);
		strcpy(new+nlen, old+olen);
		assert(strlen(new) == len);
		return new;
	}
	return old;
}