Difference between revisions of "Anydrive.c"

From Organic Design wiki
m
( coding style)
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'));
 
while ((open(file,O_RDONLY)<0) && (c <= 'Z'));
if (c <= 'Z') system(file);
+
 
else printf("No can do sir!");
+
if (c <= 'Z')
 +
{
 +
system(file);
 +
}
 +
else
 +
{
 +
printf("No can do sir!");
 +
}
 +
 
 
return 0;
 
return 0;
 
}
 
}

Revision as of 08:52, 10 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!"); }

return 0; }