View Javadoc

1   package com.tapina.robe.swi.clib.stdio;
2   
3   
4   
5   /***
6    * This function writes the character in a1 to the stream specified in a2. It is virtually identical to fputc .
7    * The only difference is that the function might be a macro and the argument may be evaluated more than once so
8    * you can't use an expression with side effects. For example putc(i++) may cause i to be incremented twice.
9    * Returns: c, or EOF if there is an error.
10   */
11  public class PutC extends FPutC {
12  }