Share Pastebin
Guest
Public paste!

Streat trash

By: a guest | Mar 14th, 2010 | Syntax: C | Size: 0.67 KB | Hits: 81 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1.  char *loaded = decrypt(passwdfile, loading);
  2.                 while(strcmp(loaded, "EOF") != 0){
  3.                         printf("the line is: %s",  loaded);
  4.                         char *toload = NULL;
  5.                         toload = strtok(loaded, delims);
  6.                         username[location] = toload;
  7.                         toload = strtok(NULL, delims);
  8.                         password[location] = toload;
  9.                         toload = strtok(NULL, delims);
  10.                         type[location] = toload;
  11.                         location++;
  12.                         entry++;
  13.                         loaded = decrypt(passwdfile, loading);
  14.                 }