struct rm_state *state = 0;
const char *program_name = 0;
-#if defined (_WIN32)
+#if defined (_WIN32) || defined (__WIN32__)
+# include <dirent.h>
# include <windows.h>
static BOOL IsDirectory (LPCTSTR szPath) {
static void rm (const char *path) {
- const char *p = path;
- char *p2;
-
+ char *p2 = xstrdup (path);
unsigned long len;
- if (isalpha ((int) p[0]) && p[1] == ':') {
- p += 2;
- }
-
- while (*p == '/') {
- p++;
- }
-
- p2 = xstrdup (path);
-
if (IsDirectory (p2)) {
char *subpath, *filename;
HANDLE hFind;
WIN32_FIND_DATA FindFileData;
- if (!state->rflag && !state->fflag) {
+ if (!state->rflag) {
- report_at (program_name, 0, REPORT_ERROR, "cannot remove directoies without -r");
+ if (!state->fflag) {
+ report_at (program_name, 0, REPORT_ERROR, "cannot remove directoies without -r");
+ }
free (p2);
return;
if ((hFind = FindFirstFile (subpath, &FindFileData)) == INVALID_HANDLE_VALUE) {
free (subpath);
- return;
+
+ do {
+
+ filename = FindFileData.cFileName;
+
+ if (filename[0] == '.' && (filename[1] == '\0' || (filename[1] == '.' && filename[2] == '\0'))) {
+ continue;
+ }
+
+ len = strlen (path);
+
+ if (path[len - 1] == '/') {
+
+ len += (strlen (filename) + 1);
+
+ if (!(subpath = malloc (len))) {
+
+ report_at (program_name, 0, REPORT_ERROR, "failed to allocate memory for '%s'", filename);
+ continue;
+
+ }
+
+ sprintf (subpath, "%s%s", path, filename);
+
+ } else {
+
+ len += (1 + strlen (filename) + 1);
+
+ if (!(subpath = malloc (len))) {
+
+ report_at (program_name, 0, REPORT_ERROR, "failed to allocate memory for '%s'", filename);
+ continue;
+
+ }
+
+ sprintf (subpath, "%s/%s", path, filename);
+
+ }
+
+ rm (subpath);
+ free (subpath);
+
+ } while (FindNextFile (hFind, &FindFileData) != 0);
+
+ }
+ FindClose (hFind);
+ rmdir (path);
+
+ } else {
+
+ if (!state->fflag && remove (p2)) {
+ report_at (program_name, 0, REPORT_ERROR, "unable to remove %s", p2);
+ }
+
+ }
+
+ free (p2);
+
+}
+#elif defined (__WATCOMC__)
+# include <i86.h>
+
+static int IsDirectory (char *path) {
+
+ struct SREGS sr = { 0 };
+ union REGS r = { 0 };
+
+ char *temp = xstrdup (path);
+ unsigned len = strlen (temp);
+
+ if (len > 3) {
+
+ while (temp[len - 1] == '\\') {
+ temp[--len] = '\0';
}
+
+ }
+
+ r.w.dx = FP_OFF (temp);
+ sr.ds = FP_SEG (temp);
+
+ r.w.ax = 0x4300;
+ int86x (0x21, &r, &r, &sr);
+
+ free (temp);
+ return (!(r.w.cflag & 1) && (r.w.cx & 0x10));
+
+}
+
+static int FindFirstFile (char *path) {
+
+ struct SREGS sr = { 0 };
+ union REGS r = { 0 };
+
+ r.w.dx = FP_OFF (path);
+ sr.ds = FP_SEG (path);
+
+ r.w.ax = 0x4e00;
+ int86x (0x21, &r, &r, &sr);
+
+ return !(r.w.cflag & 1);
+
+}
+
+static int FindNextFile (void) {
+
+ union REGS r = { 0 };
+
+ r.w.ax = 0x4f00;
+ int86 (0x21, &r, &r);
+
+ return !(r.w.cflag & 1);
+
+}
+
+static void rm (const char *path) {
+
+ char *p2 = xstrdup (path);
+ unsigned long len;
+
+ if (IsDirectory (p2)) {
+
+ char *subpath, *filename;
+ int i;
- free (subpath);
+ struct SREGS sr = { 0 };
+ union REGS r = { 0 };
- do {
+ char dta_addr[64] = { 0 };
- filename = FindFileData.cFileName;
-
- if (filename[0] == '.' && (filename[1] == '\0' || (filename[1] == '.' && filename[2] == '\0'))) {
- continue;
+ if (!state->rflag) {
+
+ if (!state->fflag) {
+ report_at (program_name, 0, REPORT_ERROR, "cannot remove directoies without -r");
}
- len = strlen (path);
+ free (p2);
+ return;
+
+ }
+
+ r.w.dx = FP_OFF (dta_addr);
+ sr.ds = FP_SEG (dta_addr);
+
+ r.w.ax = 0x1a00;
+ int86x (0x21, &r, &r, &sr);
+
+ len = strlen (p2);
+
+ if (p2[len - 1] == '\\') {
+
+ subpath = xmalloc (len + 5);
+ sprintf (subpath, "%s*.*", p2);
+
+ } else {
+
+ subpath = xmalloc (len + 6);
+ sprintf (subpath, "%s\\*.*", p2);
+
+ }
+
+ if (FindFirstFile (subpath)) {
+
+ free (subpath);
- if (path[len - 1] == '/') {
+ do {
- len += (strlen (filename) + 1);
+ filename = xstrndup (dta_addr + 30, 12);
- if (!(subpath = malloc (len))) {
-
- report_at (program_name, 0, REPORT_ERROR, "failed to allocate memory for '%s'", filename);
+ if (filename[0] == '.' && (filename[1] == '\0' || (filename[1] == '.' && filename[2] == '\0'))) {
continue;
+ }
+
+ for (i = 11; i >= 0; i--) {
+
+ if (filename[i] == ' ') {
+ filename[i] = '\0';
+ } else {
+
+ if (isupper ((int) filename[i])) {
+ filename[i] = tolower ((int) filename[i]);
+ }
+
+ }
}
- sprintf (subpath, "%s%s", path, filename);
-
- } else {
-
- len += (1 + strlen (filename) + 1);
+ len = strlen (path);
- if (!(subpath = malloc (len))) {
+ if (path[len - 1] == '\\') {
- report_at (program_name, 0, REPORT_ERROR, "failed to allocate memory for '%s'", filename);
- continue;
+ len += (strlen (filename) + 1);
+
+ if (!(subpath = malloc (len))) {
+
+ report_at (program_name, 0, REPORT_ERROR, "failed to allocate memory for '%s'", filename);
+ continue;
+
+ }
+
+ sprintf (subpath, "%s%s", path, filename);
+
+ } else {
+
+ len += (1 + strlen (filename) + 1);
+
+ if (!(subpath = malloc (len))) {
+
+ report_at (program_name, 0, REPORT_ERROR, "failed to allocate memory for '%s'", filename);
+ continue;
+
+ }
+
+ sprintf (subpath, "%s\\%s", path, filename);
}
- sprintf (subpath, "%s/%s", path, filename);
+ rm (subpath);
+ free (subpath);
- }
-
- rm (subpath);
- free (subpath);
+ } while (FindNextFile ());
+
+ }
- } while (FindNextFile (hFind, &FindFileData) != 0);
+ r.w.dx = FP_OFF (path);
+ sr.ds = FP_SEG (path);
- FindClose (hFind);
+ r.w.ax = 0x3a00;
+ int86x (0x21, &r, &r, &sr);
} else {
- int ret = remove (p2);
-
- if (!state->fflag && ret) {
+ if (!state->fflag && remove (p2)) {
report_at (program_name, 0, REPORT_ERROR, "unable to remove %s", p2);
}