[Obj386] = _read8,
};
+#define isdelim(c) ((c) == '/' || (c) == '\\')
+
+/*
+ * check if p is start of windows full path, like C:\ or c:/.
+ * return 1 if so. also set drive parameter to its
+ * upper-case drive letter.
+ */
+int
+iswinpathstart(char *p, char *drive)
+{
+ if('A' <= p[0] || p[0] <= 'Z')
+ *drive = p[0];
+ else if('a' <= p[0] || p[0] <= 'z')
+ *drive = p[0] - ('a' - 'A');
+ else
+ return 0;
+ return p[1] == ':' && isdelim(p[2]);
+}
+
/*
* copy b into bp->member but rewrite object
* during copy to drop prefix from all file names.
vlong offset, o, end;
int n, t;
int (*rd)(Biobuf*, Prog*);
- char *w, *inprefix;
+ char *w, *inprefix, d1, d2;
Prog p;
offset = Boffset(b);
if(inprefix == nil && prefix[0] == '/' && p.id[1] == '/' && p.id[2] == '\0') {
// leading /
inprefix = prefix+1;
+ } else if(inprefix == nil && iswinpathstart(prefix, &d1) && iswinpathstart(p.id + 1, &d2) && d1 == d2 && p.id[4] == '\0') {
+ // leading c:\ ...
+ inprefix = prefix+3;
} else if(inprefix != nil) {
// handle subsequent elements
n = strlen(p.id+1);
- if(strncmp(p.id+1, inprefix, n) == 0 && (inprefix[n] == '/' || inprefix[n] == '\0')) {
+ if(strncmp(p.id+1, inprefix, n) == 0 && (isdelim(inprefix[n]) || inprefix[n] == '\0')) {
inprefix += n;
- if(inprefix[0] == '/')
+ if(isdelim(inprefix[0]))
inprefix++;
}
}