Functions that perform input from a stdio stream, and functions that output to
a stdio stream. Passing a NULL
pointer for a stream argument to
any of these functions will make them read from stdin
and write to
stdout
, respectively.
When using any of these functions, it is a good idea to include `stdio.h' before `gmp.h', since that will allow `gmp.h' to define prototypes for these functions.
Return the number of bytes written, or if an error occurred, return 0.
Go to the first, previous, next, last section, table of contents.