1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-02-02 16:34:26 +00:00

Replace gets() with fgets()

This commit is contained in:
David Schmenk 2018-12-17 13:24:15 -08:00
parent abb89438ef
commit 49188358af

View File

@ -502,7 +502,7 @@ void call(uword pc)
case 8: // LIBRARY STDLIB::GETS
c = POP;
putchar(c);
gets(sz);
fgets(sz, 63, stdin);
for (i = 0; sz[i]; i++)
mem_data[0x200 + i] = sz[i];
mem_data[0x200 + i] = 0;
@ -561,7 +561,7 @@ void interp(code *ip)
while (dsp >= esp)
printf("$%04X ", (*dsp--) & 0xFFFF);
printf("]\n");
gets(cmdline);
fgets(cmdline, 15, stdin);
}
previp = ip;
switch (*ip++)