Streat trash
By: a guest | Mar 14th, 2010 | Syntax:
C | Size: 0.67 KB | Hits: 81 | Expires: Never
char *loaded = decrypt(passwdfile, loading);
while(strcmp(loaded, "EOF") != 0){
printf("the line is: %s", loaded);
char *toload = NULL;
toload = strtok(loaded, delims);
username[location] = toload;
toload = strtok(NULL, delims);
password[location] = toload;
toload = strtok(NULL, delims);
type[location] = toload;
location++;
entry++;
loaded = decrypt(passwdfile, loading);
}