ekg2  GIT master
 All Struktury Danych Pliki Funkcje Zmienne Definicje typów Wyliczenia Wartości wyliczeń Definicje Grupay Strony
gg-keygen-text.h
Idź do dokumentacji tego pliku.
1 static inline int check_text() {
2  unsigned char *text = TEXT;
3  unsigned char *password;
4 
5 #if ULTRA_DEBUG
6  printf("%s\n", realpass);
7 #endif
8  for (password = realpass; *password && *text; password++, text++) {
9  if (*text != *password)
10  return 1;
11  }
12 
13  return !(*password == '\0' && *text == '\0');
14 }
15