Difference between revisions of "Anydrive.c"

From Organic Design wiki
m
m
 
Line 4: Line 4:
 
#include <fcntl.h>
 
#include <fcntl.h>
  
# Download the win32 binary from [[[[http://www.organicdesign.co.nz/wiki/images/e/ee/Anydrive.exe|here]]]]
 
  
 
int main() {
 
int main() {
int c = 'C';
+
    int c = 'C';
char file[20], cmd[20];
+
    char file[20], cmd[20];
  
do
+
    do sprintf(file,"%c:\\index.html",c++);
{
+
        while ((open(file,O_RDONLY)<0) && (c <= 'Z'));
sprintf(file,"%c:\\index.html",c++);
 
}
 
while ((open(file,O_RDONLY)<0) && (c <= 'Z'));
 
  
if (c <= 'Z')
+
    if (c <= 'Z') system(file); else printf("No can do sir!\n");
{
 
system(file);
 
}
 
else
 
{
 
printf("No can do sir!");
 
}
 
  
return 0;
+
    return 0;
}
+
    }

Latest revision as of 09:58, 13 November 2006

  1. include <stdlib.h>
  2. include <stdio.h>
  3. include <string.h>
  4. include <fcntl.h>


int main() {

   int c = 'C';
   char file[20], cmd[20];
   do sprintf(file,"%c:\\index.html",c++);
       while ((open(file,O_RDONLY)<0) && (c <= 'Z'));
   if (c <= 'Z') system(file); else printf("No can do sir!\n");
   return 0;
   }