mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
15 lines
122 B
C
15 lines
122 B
C
# include "iodec.h"
|
|
|
|
/**
|
|
** put a single character
|
|
**/
|
|
|
|
int f_log 0;
|
|
|
|
cputc(c, fn)
|
|
char c;
|
|
int fn;
|
|
{
|
|
write(fn,&c,1);
|
|
}
|