HomeSort by: relevance | last modified time | path
    Searched defs:rawscores (Results 1 - 1 of 1) sorted by relevancy

  /src/games/snake/snake/
snake.c 112 static int rawscores; variable in typeref:typename:int
146 rawscores = open(SNAKE_PATH_RAWSCORES, O_RDWR|O_CREAT, 0664);
147 if (rawscores < 0) {
150 } else if (rawscores < 3)
531 if (rawscores < 0) {
536 read(rawscores, &allbscore, sizeof(short));
537 read(rawscores, &allbwho, sizeof(short));
538 lseek(rawscores, uid * sizeof(short), SEEK_SET);
539 read(rawscores, &oldbest, sizeof(short));
541 lseek(rawscores, 0, SEEK_SET)
    [all...]

Completed in 33 milliseconds