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

  /src/games/phantasia/
setup.c 51 / GLOBAL INPUTS: Curmonster, _iob[], Databuf[], *Monstfp, Enrgyvoid
53 / GLOBAL OUTPUTS: Curmonster, Databuf[], *Monstfp, Enrgyvoid
154 while (fgets(Databuf, SZ_DATABUF, fp) != NULL)
157 sscanf(&Databuf[24], "%lf%lf%lf%lf%lf%d%d%lf",
162 Databuf[24] = '\0';
163 strcpy(Curmonster.m_name, Databuf);
177 if (fgets(Databuf, SZ_DATABUF, stdin) == NULL)
178 Databuf[0] = '\0';
184 fwrite(Databuf, sizeof(char), strlen(Databuf), fp)
    [all...]
phantglobs.c 116 char Databuf[SZ_DATABUF]; /* a place to read data into */
main.c 399 getstring(Databuf, SZ_DATABUF);
400 sscanf(Databuf, "%lf %lf", &Player.p_x, &Player.p_y);
437 getstring(Databuf, SZ_PASSWORD);
439 while (strcmp(Player.p_password, Databuf) != 0);
520 getstring(Databuf, SZ_DATABUF);
522 if (sscanf(Databuf, "%lf %lf", &x, &y) != 2)
540 getstring(Databuf, SZ_DATABUF);
544 if (Databuf[0] != '\0')
545 fprintf(fp, "%s: %s", Player.p_name, Databuf);
587 getstring(Databuf, SZ_DATABUF)
    [all...]
gamesupport.c 43 getstring(Databuf, SZ_DATABUF);
44 truncstring(Databuf);
46 if (Databuf[0] == '\0')
58 if (strcmp(Databuf, Player.p_name) == 0)
68 if (loc < 0L && (loc = findname(Databuf, playerp)) < 0L)
184 getstring(Databuf, 9);
186 if (strcmp(Databuf, playerp->p_password) != 0)
193 getstring(Databuf, SZ_NAME);
194 truncstring(Databuf);
195 if (Databuf[0] != '\0'
    [all...]
phantglobs.h 51 extern char Databuf[]; /* a place to read data into */
interplayer.c 706 getstring(Databuf, SZ_DATABUF);
707 sscanf(Databuf, "%lf %lf", &temp1, &temp2);
801 getstring(Databuf, SZ_DATABUF);
802 sscanf(Databuf, "%lf %lf", &temp1, &temp2);
832 getstring(Databuf, SZ_DATABUF);
833 truncstring(Databuf);
835 if (Databuf[0] == '\0')
841 if (strcmp(Player.p_name, Databuf) != 0)
844 if ((loc = findname(Databuf, &Other)) >= 0L) {
io.c 90 getstring(Databuf, SZ_DATABUF);
91 if (sscanf(Databuf, "%lf", &result) < 1)
misc.c 152 snprintf(Databuf, SZ_DATABUF, "%.29s", label);
154 snprintf(Databuf, SZ_DATABUF,
158 return (Databuf);
518 strcpy(Databuf, results[type]);
519 Databuf[0] = '*';
520 return (Databuf);
934 if (fgets(Databuf, SZ_DATABUF, Messagefp) != NULL)
935 addstr(Databuf);
fight.c 1223 getstring(Databuf, SZ_DATABUF);
1224 sscanf(Databuf, "%lf %lf", &x, &y);

Completed in 16 milliseconds