diff options
Diffstat (limited to 'doc/get-started.tex')
| -rw-r--r-- | doc/get-started.tex | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/get-started.tex b/doc/get-started.tex index 537b228..0b297ed 100644 --- a/doc/get-started.tex +++ b/doc/get-started.tex @@ -147,6 +147,9 @@ error code, you instead look at the return value. case ZERROR_NEGATIVE: fprintf(stderr, "Undefined (negative input)\verb|\|n"); \textcolor{c}{return 1;} + case ZERROR_INVALID_RADIX: + fprintf(stderr, "Radix must be at least 2\verb|\|n"); + \textcolor{c}{return 1;} default: zperror(""); \textcolor{c}{return 1;} @@ -228,7 +231,7 @@ for reuse. If you plan to reuse the variable later, you need to reinitialise it by calling {\tt zinit} again. -Alternatives to {\tt zseti} include: +Alternatives to {\tt zseti} include \psecref{sec:Assignment}: \begin{alltt} void zsetu(z_t a, uint64_t value); |
