OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:score_fp
(Results
1 - 2
of
2
) sorted by relevancy
/src/games/battlestar/
command6.c
107
static FILE *
score_fp
;
variable
112
score_fp
= fopen(_PATH_SCORE, "a");
113
if (
score_fp
== NULL)
115
if (
score_fp
!= NULL && fileno(
score_fp
) < 3)
129
if (
score_fp
!= NULL) {
130
fprintf(
score_fp
, "%24.24s %8s %c%20s", ctime(&tv), username,
133
fprintf(
score_fp
, " wizard\n");
136
fprintf(
score_fp
, " WIZARD!\n");
138
fprintf(
score_fp
, "\n")
[
all
...]
/src/games/atc/
log.c
70
static FILE *
score_fp
;
variable
147
score_fp
= fdopen(score_fd, "r+");
148
if (
score_fp
== NULL) {
170
if (
score_fp
== NULL) {
176
if (flock(fileno(
score_fp
), LOCK_EX) < 0)
179
if (lockf(fileno(
score_fp
), F_LOCK, 1) < 0)
186
good = fscanf(
score_fp
, SCORE_SCANF_FMT,
264
rewind(
score_fp
);
266
(void)fprintf(
score_fp
, "%s %s %s %d %d %d\n",
270
(void)fflush(
score_fp
);
[
all
...]
Completed in 16 milliseconds
Indexes created Mon Feb 23 16:20:21 UTC 2026