Idź do dokumentacji tego pliku.00001 static inline int check_text() {
00002 unsigned char *text = TEXT;
00003 unsigned char *password;
00004
00005 #if ULTRA_DEBUG
00006 printf("%s\n", realpass);
00007 #endif
00008 for (password = realpass; *password && *text; password++, text++) {
00009 if (*text != *password)
00010 return 1;
00011 }
00012
00013 return !(*password == '\0' && *text == '\0');
00014 }
00015