Difference between revisions of "Anydrive.c"

From Organic Design wiki
m
m
 
(3 intermediate revisions by one other user not shown)
Line 3: Line 3:
 
#include <string.h>
 
#include <string.h>
 
#include <fcntl.h>
 
#include <fcntl.h>
 +
  
 
int main() {
 
int main() {
int c = 'C';
+
    int c = 'C';
char file[20], cmd[20];
+
    char file[20], cmd[20];
do sprintf(file,"%c:\\index.html",c++);
+
 
 +
    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");
  
while ((open(file,O_RDONLY)<0) && (c <= 'Z'));
+
    return 0;
if (c <= 'Z') system(file);
+
    }
else printf("No can do sir!");
 
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;
   }