Example #1
0
void
printchar(int c)
{
  if (test_flag && out_count < OUTBUFLEN)
		out_buf[out_count++] = c;
  dConsolePutChar(c);
}
Example #2
0
void StdioPuts(struct ParseState *Parser, struct Value *ReturnValue, struct Value **Param, int NumArgs)
{
    dConsolePut(Param[0]->Val->Pointer);
	dConsolePutChar ('\n');

    ReturnValue->Val->Integer = 0;
}
Example #3
0
void
printchar(int c)
{
  dConsolePutChar(c);
}