HomeSort by: relevance | last modified time | path
    Searched refs:wordpath (Results 1 - 2 of 2) sorted by relevancy

  /src/games/boggle/boggle/
mach.c 73 extern int usedbits, wordpath[];
422 wordpath[i] = -1;
424 if (!found || checkword(buf, -1, wordpath) == -1) {
437 for (i = 0; wordpath[i] != -1; i++) {
438 row = BOARD_LINE + (wordpath[i] / 4) * 2 + 1;
439 col = BOARD_COL + (wordpath[i] % 4) * 4 + 2;
441 if (board[wordpath[i]] == 'q')
445 toupper((unsigned char)board[wordpath[i]]));
453 for (i = 0; wordpath[i] != -1; i++) {
454 row = BOARD_LINE + (wordpath[i] / 4) * 2 + 1
    [all...]
bog.c 103 int wordpath[MAXWORDLEN + 1]; variable in typeref:typename:int[]
298 if (checkword(w, -1, wordpath) != -1)
360 if (checkword(buf, -1, wordpath) < 0)
365 for (i = 0; wordpath[i] != -1; i++)
366 (void) printf(" %d", wordpath[i]);
434 for (i = 0; wordpath[i] != -1; i++)
435 (void) printf(" %d", wordpath[i]);
592 if (checkword(w, -1, wordpath) == -1)
688 * Clear wordpath[].
696 for (pos = 0; pos < max && (full || wordpath[pos] != -1); pos++)
    [all...]

Completed in 21 milliseconds